diff --git a/src/RecoveryServices/RecoveryServices.Backup.Helpers/RecoveryServices.Backup.Helpers.csproj b/src/RecoveryServices/RecoveryServices.Backup.Helpers/RecoveryServices.Backup.Helpers.csproj index 83fb3646a1af..8a31ec7dec1e 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Helpers/RecoveryServices.Backup.Helpers.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup.Helpers/RecoveryServices.Backup.Helpers.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.Backup.Helpers/TrackingHelpers.cs b/src/RecoveryServices/RecoveryServices.Backup.Helpers/TrackingHelpers.cs index 10d91b498cba..1b39e0203c78 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Helpers/TrackingHelpers.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Helpers/TrackingHelpers.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using System; +using Microsoft.Azure.Management.RecoveryServices.Backup.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; using RestAzureNS = Microsoft.Rest.Azure; using ServiceClientModel = Microsoft.Azure.Management.RecoveryServices.Backup.Models; @@ -110,6 +111,31 @@ public static RestAzureNS.AzureOperationResponse GetOperationResult( return opStatusResponse; } + /// + /// Block to track the operation to completion. + /// Waits till the status of the data-move operation is InProgress. + /// + /// Response of the operation returned by the service. + /// Delegate method to fetch the operation status of the operation. + /// Result of the operation once it completes. + public static RestAzureNS.AzureOperationResponse GetOperationStatusDataMove( + RestAzureNS.AzureOperationResponse response, + Func> getOpStatus) + where T: ServiceClientModel.OperationStatus + { + var operationId = response.Response.Headers.GetOperationResultId(); + var opStatusResponse = getOpStatus(operationId); + + while (opStatusResponse.Body.Status == "InProgress") + { + TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); + opStatusResponse = getOpStatus(operationId); + } + opStatusResponse = getOpStatus(operationId); + + return opStatusResponse; + } + /// /// Block to track the operation to completion. /// Waits till the HTTP status code of the operation becomes something other than Accepted. @@ -123,18 +149,29 @@ public static RestAzureNS.AzureOperationResponse GetOperationResult( where T: ServiceClientModel.ProtectionContainerResource { var operationId = response.Response.Headers.GetOperationResultId(); - var opStatusResponse = getOpStatus(operationId); while (opStatusResponse.Response.StatusCode == SystemNet.HttpStatusCode.Accepted) { TestMockSupport.Delay(_defaultSleepForOperationTracking * 1000); - opStatusResponse = getOpStatus(operationId); } - opStatusResponse = getOpStatus(operationId); + return opStatusResponse; + } + /// + /// This method is used to fetch the prepare data move CorrelationId. + /// + /// Response of the operation returned by the service. + /// Delegate method to fetch the correlation id of the operation. + /// Result of the operation once it completes. + public static PrepareDataMoveResponse GetCorrelationId( + RestAzureNS.AzureOperationResponse response, + Func getCorrelationId) + { + var operationId = response.Response.Headers.GetAzureAsyncOperationId(); + var opStatusResponse = getCorrelationId(operationId); return opStatusResponse; } diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/CommonModels/Enums.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/CommonModels/Enums.cs index 99cb65d12a95..e895f966a5ca 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/CommonModels/Enums.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/CommonModels/Enums.cs @@ -326,7 +326,12 @@ public enum JobOperation /// /// Disable protection with delete data /// - DeleteBackupData + DeleteBackupData, + + /// + /// Data move between source and target vaults + /// + BackupDataMove } /// diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs index d04f5d8f84e6..b422970c8003 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs @@ -1527,5 +1527,27 @@ public static string YearlyScheduleMonthsOfYearException { return ResourceManager.GetString("YearlyScheduleMonthsOfYearException", resourceCulture); } } + + /// + /// Looks up a localized string similar to Please provide an empty target vault. The target vault should not have any backup items or backup containers. + /// + public static string TargetVaultNotEmptyException + { + get + { + return ResourceManager.GetString("TargetVaultNotEmptyException", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to copy items to the whose storage redundancy is . + /// + public static string TargetVaultStorageRedundancy + { + get + { + return ResourceManager.GetString("TargetVaultStorageRedundancy", resourceCulture); + } + } } } diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx index 36a9da729e50..d7e79b3fac8f 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx @@ -604,4 +604,10 @@ Please contact Microsoft for further assistance. Both source file path and multiple source file paths provided. Please give only one option + + Please provide an empty target vault. The target vault should not have any backup items or backup containers + + + Are you sure you want to copy items to the {0} whose storage redundancy is {1} + \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/RecoveryServices.Backup.Models.csproj b/src/RecoveryServices/RecoveryServices.Backup.Models/RecoveryServices.Backup.Models.csproj index b1fc6cc42e80..b35072621877 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/RecoveryServices.Backup.Models.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/RecoveryServices.Backup.Models.csproj @@ -12,7 +12,7 @@ - + \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/RecoveryServices.Backup.Providers.csproj b/src/RecoveryServices/RecoveryServices.Backup.Providers/RecoveryServices.Backup.Providers.csproj index 8aa3574de053..2f018778d3a2 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Providers/RecoveryServices.Backup.Providers.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/RecoveryServices.Backup.Providers.csproj @@ -1,4 +1,4 @@ - + RecoveryServices @@ -12,7 +12,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/ContainerAPIs.cs b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/ContainerAPIs.cs index f35d5218d02d..cea077b76330 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/ContainerAPIs.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/ContainerAPIs.cs @@ -125,6 +125,23 @@ public IEnumerable ListUnregisteredContainers( return HelperUtils.GetPagedList(listAsync, listNextAsync); } + /// + /// Gets Backup Usage Summary - registered containers/items within the vault + /// + /// + public IEnumerable GetBackupUsageSummary(string vaultName, string resourceGroupName, + ODataQuery queryFilter) + { + Func> listAsync = () => BmsAdapter.Client.BackupUsageSummaries.ListWithHttpMessagesAsync( + vaultName, + resourceGroupName, + queryFilter, + skipToken: null, + cancellationToken: BmsAdapter.CmdletCancellationToken).Result.Body; + + return listAsync(); + } + /// /// Triggers refresh of container catalog in service /// diff --git a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/OperationStatusAPIs.cs b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/OperationStatusAPIs.cs index 3c55f64bc453..2156e279784b 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/OperationStatusAPIs.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/OperationStatusAPIs.cs @@ -12,6 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Management.RecoveryServices.Backup.Models; using RestAzureNS = Microsoft.Rest.Azure; using ServiceClientModel = Microsoft.Azure.Management.RecoveryServices.Backup.Models; @@ -99,6 +100,42 @@ public RestAzureNS.AzureOperationResponse + /// Gets status of prepare data move operation on the source vault + /// + /// ID of the operation in progress + /// + public RestAzureNS.AzureOperationResponse + GetDataMoveOperationStatus( + string operationId, + string vaultName = null, + string resourceGroupName = null) + { + return BmsAdapter.Client.GetOperationStatusWithHttpMessagesAsync( + vaultName, + resourceGroupName, + operationId).Result; + } + + /// + /// Gets correlationId result of prepare data move operation on the source vault + /// + /// ID of the operation in progress + /// + public ServiceClientModel.PrepareDataMoveResponse + GetPrepareDataMoveOperationResult( + string operationId, + string vaultName = null, + string resourceGroupName = null) + { + PrepareDataMoveResponse prepareResponse = BmsAdapter.Client.BMSPrepareDataMoveOperationResult.BeginGetWithHttpMessagesAsync( + vaultName, + resourceGroupName, + operationId).Result.Body; + + return prepareResponse; + } + /// /// Gets result of the cancel operation on the job using the operation ID /// diff --git a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/VaultAPIs.cs b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/VaultAPIs.cs index 0d60db90d467..8fbb3982ce11 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/VaultAPIs.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/BMSAPIs/VaultAPIs.cs @@ -38,5 +38,17 @@ public BackupResourceVaultConfigResource GetVaultProperty(string vaultName, stri return BmsAdapter.Client.BackupResourceVaultConfigs.GetWithHttpMessagesAsync( vaultName, resourceGroupName).Result.Body; } + + /// + /// Method to Get Azure Recovery Services Vault Backup Properties + /// + /// Name of the resouce group + /// Name of the vault + /// Azure Resource Storage response object. + public BackupResourceConfigResource GetVaultStorageType(string resouceGroupName, string vaultName) + { + return BmsAdapter.Client.BackupResourceStorageConfigs.GetWithHttpMessagesAsync( + vaultName, resouceGroupName).Result.Body; + } } } diff --git a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/RecoveryServices.Backup.ServiceClientAdapter.csproj b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/RecoveryServices.Backup.ServiceClientAdapter.csproj index edf28a888ecb..30a7df1c42d6 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/RecoveryServices.Backup.ServiceClientAdapter.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup.ServiceClientAdapter/RecoveryServices.Backup.ServiceClientAdapter.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj b/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj index 653dc9d99387..b49205af7cb8 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/Common.ps1 b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/Common.ps1 index e0f6517a1f6e..824ffcea7911 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/Common.ps1 +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/Common.ps1 @@ -64,7 +64,7 @@ function Create-VM( $tags += @{"AutoShutDown"="No"} $tags += @{"DeleteBy"="05-2020"} - $vmConfig = New-AzVMConfig -VMName $vmName -VMSize Standard_D1 | ` + $vmConfig = New-AzVMConfig -VMName $vmName -VMSize Standard_D1_v2 | ` Set-AzVMOperatingSystem -Windows -ComputerName $vmName -Credential $Credential | ` Set-AzVMSourceImage -PublisherName MicrosoftWindowsServer -Offer WindowsServer ` -Skus 2016-Datacenter -Version latest | Add-AzVMNetworkInterface -Id $nic.Id diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.cs b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.cs index b9c5ea4d2db8..8ca582eb3606 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.cs @@ -130,5 +130,14 @@ public void TestAzureVMDiskExclusion() TestController.NewInstance.RunPsTest( _logger, PsBackupProviderTypes.IaasVm, "Test-AzureVMDiskExclusion"); } + + [Fact(Skip = "CCY region is down and the testing for DS Move is restricted")] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(TestConstants.Workload, TestConstants.AzureVM)] + public void TestAzureBackupDataMove() + { + TestController.NewInstance.RunPsTest( + _logger, PsBackupProviderTypes.IaasVm, "Test-AzureBackupDataMove"); + } } } diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.ps1 b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.ps1 index 49a2d0404385..e8fd9d4b6155 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.ps1 +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/ItemTests.ps1 @@ -12,6 +12,32 @@ # limitations under the License. # ---------------------------------------------------------------------------------- +function Test-AzureBackupDataMove +{ + $sourceLocation = "eastus2euap" + $sourceResourceGroup = Create-ResourceGroup $sourceLocation 21 + + $targetLocation = "centraluseuap" + $targetResourceGroup = Create-ResourceGroup $targetLocation 23 + + $vm = Create-VM $sourceResourceGroup $sourceLocation 3 + $vault1 = Create-RecoveryServicesVault $sourceResourceGroup $sourceLocation + $vault2 = Create-RecoveryServicesVault $targetResourceGroup $targetLocation + Enable-Protection $vault1 $vm + + # disable soft delete for successful cleanup + Set-AzRecoveryServicesVaultProperty -VaultId $vault1.ID -SoftDeleteFeatureState "Disable" + Set-AzRecoveryServicesVaultProperty -VaultId $vault2.ID -SoftDeleteFeatureState "Disable" + + # data move v2 to v1 fails due to TargetVaultNotEmpty + Assert-ThrowsContains { Copy-AzRecoveryServicesVault -SourceVault $vault2 -TargetVault $vault1 -Force } ` + "Please provide an empty target vault. The target vault should not have any backup items or backup containers"; + + # data move from v1 to v2 succeeds + $dataMove = Copy-AzRecoveryServicesVault -SourceVault $vault1 -TargetVault $vault2 -Force; + Assert-True { $dataMove -contains "Please monitor the operation using Az-RecoveryServicesBackupJob cmdlet" } +} + function Test-AzureVMGetItems { $location = "southeastasia" diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureBackupDataMove.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureBackupDataMove.json new file mode 100644 index 000000000000..bbf1df3f180a --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureBackupDataMove.json @@ -0,0 +1,10073 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG54548c5f7?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45591356-92fe-4a41-a3fb-a211db4f6f1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d6c7008f-0834-4bcd-baf6-8e505871d605" + ], + "x-ms-correlation-request-id": [ + "d6c7008f-0834-4bcd-baf6-8e505871d605" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112904Z:d6c7008f-0834-4bcd-baf6-8e505871d605" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "109" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG54548c5f7' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG54548c5f7?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1ab2004-5e58-4c7b-b74e-a692f8db7543" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "b378ac90-6cd6-4f4f-92aa-ad8d41aeb8c5" + ], + "x-ms-correlation-request-id": [ + "b378ac90-6cd6-4f4f-92aa-ad8d41aeb8c5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112907Z:b378ac90-6cd6-4f4f-92aa-ad8d41aeb8c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:07 GMT" + ], + "Content-Length": [ + "194" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7\",\r\n \"name\": \"PSTestRG54548c5f7\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG54548c5f8?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce8c3bf2-d839-4289-a783-4f5b380ecb0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "771d8725-9bc3-4941-86e3-7d4b970ae1d9" + ], + "x-ms-correlation-request-id": [ + "771d8725-9bc3-4941-86e3-7d4b970ae1d9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112907Z:771d8725-9bc3-4941-86e3-7d4b970ae1d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "109" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG54548c5f8' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourcegroups/PSTestRG54548c5f8?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8dad37ac-cfa9-41a5-9585-e5db8c3d52ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "d40616ed-9010-462f-b868-93174d3460cf" + ], + "x-ms-correlation-request-id": [ + "d40616ed-9010-462f-b868-93174d3460cf" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112910Z:d40616ed-9010-462f-b868-93174d3460cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:10 GMT" + ], + "Content-Length": [ + "192" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8\",\r\n \"name\": \"PSTestRG54548c5f8\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvUFNUZXN0Vk01NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5226bf2-9d4e-417e-8caf-76da8a02fd46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9536eff5-bb07-4443-a993-23ae37944364" + ], + "x-ms-correlation-request-id": [ + "9536eff5-bb07-4443-a993-23ae37944364" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112912Z:9536eff5-bb07-4443-a993-23ae37944364" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "231" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/PSTestVM545483' under resource group 'hiagaSrcRG2' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvUFNUZXN0Vk01NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31979" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "54c18598-8458-44cb-86fc-39c33b72264d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "2a26a133-c69f-41da-91de-cf55f3722f7f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113156Z:2a26a133-c69f-41da-91de-cf55f3722f7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:31:56 GMT" + ], + "Content-Length": [ + "2165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestVM545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"05-2020\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"40969f41-271d-4f7a-92c1-e9953ac57fed\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.3866.2008081933\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM545483_OsDisk_1_1e4875a1a91f4a07be77009215f0cd9d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/HIAGASRCRG2/providers/Microsoft.Compute/disks/PSTestVM545483_OsDisk_1_1e4875a1a91f4a07be77009215f0cd9d\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM545483\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"patchSettings\": {\r\n \"patchMode\": \"Manual\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://chandrikargdiag791.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvUFNUZXN0Vk01NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b19fa870-0a11-4893-ae80-cc704d2b9266" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6cbbd967-245c-4d2c-a63a-41b7c5911072" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "988b3c39-f562-403c-85da-472dc423c59b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113541Z:988b3c39-f562-403c-85da-472dc423c59b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:35:40 GMT" + ], + "Content-Length": [ + "2723" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestVM545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"05-2020\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"40969f41-271d-4f7a-92c1-e9953ac57fed\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.3866.2008081933\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"PSTestVM545483_OsDisk_1_1e4875a1a91f4a07be77009215f0cd9d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/HIAGASRCRG2/providers/Microsoft.Compute/disks/PSTestVM545483_OsDisk_1_1e4875a1a91f4a07be77009215f0cd9d\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM545483\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"patchSettings\": {\r\n \"patchMode\": \"Manual\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://chandrikargdiag791.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvUFNUZXN0Vk5FVDU0NTQ4Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa2c0136-4f7c-4bcb-9a25-195b13105c4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8d27d4e9-b95f-4336-b178-fc9edff8831b" + ], + "x-ms-correlation-request-id": [ + "8d27d4e9-b95f-4336-b178-fc9edff8831b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112913Z:8d27d4e9-b95f-4336-b178-fc9edff8831b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "233" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/PSTestVNET545483' under resource group 'hiagaSrcRG2' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvUFNUZXN0Vk5FVDU0NTQ4Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4bdcaa6c-0fbd-4c88-9491-65dc7e1396f7\"" + ], + "x-ms-request-id": [ + "5dad09f8-6700-4cec-8ef7-d187eb5fba41" + ], + "x-ms-correlation-request-id": [ + "c0e301ef-fc21-4aff-895b-6bac9b1a90bf" + ], + "x-ms-arm-service-request-id": [ + "2a541d7b-7a75-4b10-b08a-115961f1ee97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112930Z:c0e301ef-fc21-4aff-895b-6bac9b1a90bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:29 GMT" + ], + "Content-Length": [ + "1365" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestVNET545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483\",\r\n \"etag\": \"W/\\\"4bdcaa6c-0fbd-4c88-9491-65dc7e1396f7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8ec68e47-1cc4-42e0-b0eb-0972b85fb053\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"PSTestSNC545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483/subnets/PSTestSNC545483\",\r\n \"etag\": \"W/\\\"4bdcaa6c-0fbd-4c88-9491-65dc7e1396f7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvUFNUZXN0Vk5FVDU0NTQ4Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d60e1b7-2246-4257-9467-dc04401b6b40" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4bdcaa6c-0fbd-4c88-9491-65dc7e1396f7\"" + ], + "x-ms-request-id": [ + "c0b42455-980a-4f24-bf8a-bb67351523fc" + ], + "x-ms-correlation-request-id": [ + "a763b2d0-60d4-4cde-a408-2b203a2a0084" + ], + "x-ms-arm-service-request-id": [ + "ba423c9c-b4dd-485a-adca-f110d707dcb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112931Z:a763b2d0-60d4-4cde-a408-2b203a2a0084" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:30 GMT" + ], + "Content-Length": [ + "1365" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestVNET545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483\",\r\n \"etag\": \"W/\\\"4bdcaa6c-0fbd-4c88-9491-65dc7e1396f7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8ec68e47-1cc4-42e0-b0eb-0972b85fb053\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"PSTestSNC545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483/subnets/PSTestSNC545483\",\r\n \"etag\": \"W/\\\"4bdcaa6c-0fbd-4c88-9491-65dc7e1396f7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvUFNUZXN0Vk5FVDU0NTQ4Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"PSTestSNC545483\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "545bb01a-96c0-4e3c-8b15-22d352cc6598" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "699" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "baa819af-f332-4b8c-911e-a7dc02557912" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/centraluseuap/operations/baa819af-f332-4b8c-911e-a7dc02557912?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "70ff03aa-2920-4d6e-947b-7666a6e74478" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "4df45ed8-038f-4636-8096-a40de49cf92d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112926Z:70ff03aa-2920-4d6e-947b-7666a6e74478" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:25 GMT" + ], + "Content-Length": [ + "1363" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestVNET545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483\",\r\n \"etag\": \"W/\\\"fbc8416f-287d-44c8-af6f-62385f00f794\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8ec68e47-1cc4-42e0-b0eb-0972b85fb053\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"PSTestSNC545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483/subnets/PSTestSNC545483\",\r\n \"etag\": \"W/\\\"fbc8416f-287d-44c8-af6f-62385f00f794\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/centraluseuap/operations/baa819af-f332-4b8c-911e-a7dc02557912?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2JhYTgxOWFmLWYzMzItNGI4Yy05MTFlLWE3ZGMwMjU1NzkxMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cb2be479-bd41-4b7c-b294-01ba657c174c" + ], + "x-ms-correlation-request-id": [ + "58a5cbeb-bdd9-4144-ae64-227b71d48c6f" + ], + "x-ms-arm-service-request-id": [ + "9eb1d131-4214-447d-813e-6c90fc3dfd59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112930Z:58a5cbeb-bdd9-4144-ae64-227b71d48c6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:29 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wc3Rlc3RwdWJsaWNkbnM1NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a0f35e4-a9a0-41f6-b3e2-7ddb4f52278f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "37397954-3aa8-4cb0-bd31-e89ec3234cf4" + ], + "x-ms-correlation-request-id": [ + "37397954-3aa8-4cb0-bd31-e89ec3234cf4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112931Z:37397954-3aa8-4cb0-bd31-e89ec3234cf4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "240" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pstestpublicdns545483' under resource group 'hiagaSrcRG2' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wc3Rlc3RwdWJsaWNkbnM1NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"08e4a9cd-e7d2-4802-ba72-1e259c63e3de\"" + ], + "x-ms-request-id": [ + "bedb4428-76e0-4e43-a62e-5b8ab8596e24" + ], + "x-ms-correlation-request-id": [ + "12d60a25-e58e-4d8e-a327-01ce6ba6a218" + ], + "x-ms-arm-service-request-id": [ + "9a72cf06-8e7e-4f5f-a902-faa609741077" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112937Z:12d60a25-e58e-4d8e-a327-01ce6ba6a218" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:36 GMT" + ], + "Content-Length": [ + "668" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns545483\",\r\n \"etag\": \"W/\\\"08e4a9cd-e7d2-4802-ba72-1e259c63e3de\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01829983-437e-4977-9f02-6a55b5f76cf7\",\r\n \"ipAddress\": \"52.180.161.77\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wc3Rlc3RwdWJsaWNkbnM1NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc0f4bfe-ee9e-468c-8ba3-f30ec856462e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"08e4a9cd-e7d2-4802-ba72-1e259c63e3de\"" + ], + "x-ms-request-id": [ + "8331f314-149c-4b76-9713-17f6212a9cc3" + ], + "x-ms-correlation-request-id": [ + "a3dc8acb-9d52-4c63-8ebd-6a04dd497099" + ], + "x-ms-arm-service-request-id": [ + "83b588d4-ae77-4acd-aa84-22785d2079ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112938Z:a3dc8acb-9d52-4c63-8ebd-6a04dd497099" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:37 GMT" + ], + "Content-Length": [ + "668" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns545483\",\r\n \"etag\": \"W/\\\"08e4a9cd-e7d2-4802-ba72-1e259c63e3de\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01829983-437e-4977-9f02-6a55b5f76cf7\",\r\n \"ipAddress\": \"52.180.161.77\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9wc3Rlc3RwdWJsaWNkbnM1NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"ipTags\": [],\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"zones\": [],\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb74b2f5-7861-4279-8dce-0ca0b90d22a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "169" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "c8ddd544-4960-4d8e-9963-b326210e3e61" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/centraluseuap/operations/c8ddd544-4960-4d8e-9963-b326210e3e61?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "e0d95694-4ef3-4b8b-b5ec-a351c61ac8f6" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "201fc6d0-e028-4bc8-919d-bf731f3ca288" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112936Z:e0d95694-4ef3-4b8b-b5ec-a351c61ac8f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:35 GMT" + ], + "Content-Length": [ + "632" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pstestpublicdns545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns545483\",\r\n \"etag\": \"W/\\\"3a600bb0-282f-44a5-a39b-665bd1aca76b\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"01829983-437e-4977-9f02-6a55b5f76cf7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/centraluseuap/operations/c8ddd544-4960-4d8e-9963-b326210e3e61?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M4ZGRkNTQ0LTQ5NjAtNGQ4ZS05OTYzLWIzMjYyMTBlM2U2MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bac285db-7924-47db-a272-0ad34c4ea1f5" + ], + "x-ms-correlation-request-id": [ + "09ce5d08-b65c-4a47-bcfc-4216e7f0453b" + ], + "x-ms-arm-service-request-id": [ + "f45e38c3-c93b-483f-a2b4-f6b8277ce408" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112937Z:09ce5d08-b65c-4a47-bcfc-4216e7f0453b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:36 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvUFNUZXN0TlNHNTQ1NDgzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48eeabfd-909b-4efe-a33e-231b0f1019d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ee8152bf-b9f3-45e3-8543-2c4c85ae91b3" + ], + "x-ms-correlation-request-id": [ + "ee8152bf-b9f3-45e3-8543-2c4c85ae91b3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112938Z:ee8152bf-b9f3-45e3-8543-2c4c85ae91b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "238" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/PSTestNSG545483' under resource group 'hiagaSrcRG2' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvUFNUZXN0TlNHNTQ1NDgzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d09bf469-3e4a-4610-929e-404b2acf78ca\"" + ], + "x-ms-request-id": [ + "968a9607-4175-427b-8359-55f30da9edc0" + ], + "x-ms-correlation-request-id": [ + "3b47d02b-e2de-45dd-aa2d-3d0965cded39" + ], + "x-ms-arm-service-request-id": [ + "c5bad5c3-4cac-4818-a75f-3242edc045a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112945Z:3b47d02b-e2de-45dd-aa2d-3d0965cded39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:44 GMT" + ], + "Content-Length": [ + "8430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestNSG545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b734a82-5a28-4c11-870b-643f52a320ce\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/securityRules/PSTestNSGRuleRDP545483\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"PSTestNSGRuleWeb545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/securityRules/PSTestNSGRuleWeb545483\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvUFNUZXN0TlNHNTQ1NDgzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da34123c-c11a-48cc-83e8-91b4d15fb5f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d09bf469-3e4a-4610-929e-404b2acf78ca\"" + ], + "x-ms-request-id": [ + "a2ff17c0-6d8d-4184-aa9a-a8578f630fc7" + ], + "x-ms-correlation-request-id": [ + "f82c1c73-a91d-4a28-a178-3edecdc1266b" + ], + "x-ms-arm-service-request-id": [ + "4edc4998-9e6d-4827-ae27-6c00a0706dc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112946Z:f82c1c73-a91d-4a28-a178-3edecdc1266b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:45 GMT" + ], + "Content-Length": [ + "8430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestNSG545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b734a82-5a28-4c11-870b-643f52a320ce\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/securityRules/PSTestNSGRuleRDP545483\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"PSTestNSGRuleWeb545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/securityRules/PSTestNSGRuleWeb545483\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d09bf469-3e4a-4610-929e-404b2acf78ca\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvUFNUZXN0TlNHNTQ1NDgzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"PSTestNSGRuleRDP545483\"\r\n },\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"PSTestNSGRuleWeb545483\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2c7b6a4-022e-436b-8976-ddb136ce634f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "852" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "5e4ab475-1dc3-4c80-9585-e6253a873680" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/centraluseuap/operations/5e4ab475-1dc3-4c80-9585-e6253a873680?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "67a0bc5c-3781-44a8-a251-ae18397325d2" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "7c7b8ea2-4243-4400-bef7-a681bcaafa7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112942Z:67a0bc5c-3781-44a8-a251-ae18397325d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:41 GMT" + ], + "Content-Length": [ + "8421" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestNSG545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483\",\r\n \"etag\": \"W/\\\"24ef43ad-011e-4a2e-9bce-ddeb4fcda25e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7b734a82-5a28-4c11-870b-643f52a320ce\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"PSTestNSGRuleRDP545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/securityRules/PSTestNSGRuleRDP545483\",\r\n \"etag\": \"W/\\\"24ef43ad-011e-4a2e-9bce-ddeb4fcda25e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"PSTestNSGRuleWeb545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/securityRules/PSTestNSGRuleWeb545483\",\r\n \"etag\": \"W/\\\"24ef43ad-011e-4a2e-9bce-ddeb4fcda25e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"24ef43ad-011e-4a2e-9bce-ddeb4fcda25e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"24ef43ad-011e-4a2e-9bce-ddeb4fcda25e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"24ef43ad-011e-4a2e-9bce-ddeb4fcda25e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"24ef43ad-011e-4a2e-9bce-ddeb4fcda25e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"24ef43ad-011e-4a2e-9bce-ddeb4fcda25e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"24ef43ad-011e-4a2e-9bce-ddeb4fcda25e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/centraluseuap/operations/5e4ab475-1dc3-4c80-9585-e6253a873680?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzVlNGFiNDc1LTFkYzMtNGM4MC05NTg1LWU2MjUzYTg3MzY4MD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d01edf63-5cf7-44fc-a283-9a1e80a58326" + ], + "x-ms-correlation-request-id": [ + "c04ae96a-e30a-4427-8950-fcadf8cd82e9" + ], + "x-ms-arm-service-request-id": [ + "2ad03f0c-6c3f-42bd-b432-4eeed508e49a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112945Z:c04ae96a-e30a-4427-8950-fcadf8cd82e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:44 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9QU1Rlc3ROSUM1NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbffca58-408a-4bd6-902e-b7d0eac53e77" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "761e835e-6c01-4bd8-875d-8fb685546ff6" + ], + "x-ms-correlation-request-id": [ + "761e835e-6c01-4bd8-875d-8fb685546ff6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112946Z:761e835e-6c01-4bd8-875d-8fb685546ff6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "234" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/PSTestNIC545483' under resource group 'hiagaSrcRG2' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9QU1Rlc3ROSUM1NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c2f579db-8861-497f-9975-ccfec920d504\"" + ], + "x-ms-request-id": [ + "402fdedb-ba7f-4ccd-af01-20f072a84aef" + ], + "x-ms-correlation-request-id": [ + "6f783815-cc67-46d8-bc90-0a40088688f5" + ], + "x-ms-arm-service-request-id": [ + "cb29ba5c-9330-4a5a-b9ab-ec4c28bff54e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112950Z:6f783815-cc67-46d8-bc90-0a40088688f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:49 GMT" + ], + "Content-Length": [ + "2081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestNIC545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483\",\r\n \"etag\": \"W/\\\"c2f579db-8861-497f-9975-ccfec920d504\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73908adb-fd07-499d-aa06-73fc90243b73\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c2f579db-8861-497f-9975-ccfec920d504\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns545483\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483/subnets/PSTestSNC545483\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"i4hmndwedtqefmhlbfzlqx3qkd.cdmx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9QU1Rlc3ROSUM1NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d678735-858a-405b-8904-00d33f12e6a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c2f579db-8861-497f-9975-ccfec920d504\"" + ], + "x-ms-request-id": [ + "bd804ce7-0bfa-4cd0-8ca8-68f7b12189f8" + ], + "x-ms-correlation-request-id": [ + "0086a2ce-909f-4fa4-886d-32940fe88a71" + ], + "x-ms-arm-service-request-id": [ + "4a0e2ab0-b04d-4939-bdb4-77f9b8a7bb84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112950Z:0086a2ce-909f-4fa4-886d-32940fe88a71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:50 GMT" + ], + "Content-Length": [ + "2081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestNIC545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483\",\r\n \"etag\": \"W/\\\"c2f579db-8861-497f-9975-ccfec920d504\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73908adb-fd07-499d-aa06-73fc90243b73\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c2f579db-8861-497f-9975-ccfec920d504\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns545483\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483/subnets/PSTestSNC545483\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"i4hmndwedtqefmhlbfzlqx3qkd.cdmx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9QU1Rlc3ROSUM1NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483\",\r\n \"tags\": {}\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"virtualNetworkTaps\": [],\r\n \"applicationGatewayBackendAddressPools\": [],\r\n \"loadBalancerBackendAddressPools\": [],\r\n \"loadBalancerInboundNatRules\": [],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": []\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483/subnets/PSTestSNC545483\"\r\n },\r\n \"primary\": true,\r\n \"publicIPAddress\": {\r\n \"properties\": {\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns545483\",\r\n \"tags\": {}\r\n }\r\n },\r\n \"name\": \"ipconfig1\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cf99407-e8e2-4287-9c43-64b325a6e6a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1599" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7add1f01-3534-43e8-b2de-b47247285d7e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Network/locations/centraluseuap/operations/7add1f01-3534-43e8-b2de-b47247285d7e?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "545e56d4-ddc4-4e9f-8f32-6073997105ac" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "59ee7034-23ce-4301-83b5-6c977e944d28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112950Z:545e56d4-ddc4-4e9f-8f32-6073997105ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:49 GMT" + ], + "Content-Length": [ + "2081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestNIC545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483\",\r\n \"etag\": \"W/\\\"c2f579db-8861-497f-9975-ccfec920d504\\\"\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73908adb-fd07-499d-aa06-73fc90243b73\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"c2f579db-8861-497f-9975-ccfec920d504\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/publicIPAddresses/pstestpublicdns545483\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/virtualNetworks/PSTestVNET545483/subnets/PSTestSNC545483\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"i4hmndwedtqefmhlbfzlqx3qkd.cdmx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkSecurityGroups/PSTestNSG545483\"\r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e8310d-713e-4459-93bf-784265c517dc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "6e77f570-38f5-402c-bea9-beedda83b1ce" + ], + "x-ms-correlation-request-id": [ + "6e77f570-38f5-402c-bea9-beedda83b1ce" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112952Z:6e77f570-38f5-402c-bea9-beedda83b1ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ebeda94-72b7-42dd-ad10-8bf4e8fa13d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.22" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "057d320f-c2b7-41ef-9709-2ca3d16b71c2", + "85db00f9-8cce-4194-9412-beaeffb5f7a0", + "5856f5db-e5b4-4a4a-85ad-30cee8b11087", + "a786f9e5-2351-428e-bd55-cf4d87cce386", + "6677fc71-57bc-4e28-a2af-4d1c4b6f728a", + "1c6e9841-27ad-48f0-bb7b-a28e41aa81ea", + "576f15ea-f1b8-4010-bfa9-49ba01b5aa1f", + "66b07bc1-ec04-45ec-97da-0108acd617a1", + "dd07567a-fe5f-41af-8dd8-ecbe8ee7c84c", + "37e0798a-dd02-4f54-a11a-5cc061368c27", + "def3e3c4-13cd-4db4-9f7f-41ea6b8a2d7e", + "3458494d-ddf7-40cf-940d-98845168ba55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "5db7cedc-4a4d-400c-9fe5-d974b2c9a830" + ], + "x-ms-correlation-request-id": [ + "5db7cedc-4a4d-400c-9fe5-d974b2c9a830" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T112953Z:5db7cedc-4a4d-400c-9fe5-d974b2c9a830" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:29:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "59642" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675eastus\",\r\n \"name\": \"da1675eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-11T03:00:12.0885848Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-11T03:00:12.0885848Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-07-26T19:41:16.7800756Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://da1675eastus.blob.core.windows.net/\",\r\n \"queue\": \"https://da1675eastus.queue.core.windows.net/\",\r\n \"table\": \"https://da1675eastus.table.core.windows.net/\",\r\n \"file\": \"https://da1675eastus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiaga-rg/providers/Microsoft.Storage/storageAccounts/pscmdlets\",\r\n \"name\": \"pscmdlets\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"pscmd\": \"pscmd\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-26T06:31:12.7148947Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-26T06:31:12.7148947Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-26T06:31:12.636743Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pscmdlets.blob.core.windows.net/\",\r\n \"queue\": \"https://pscmdlets.queue.core.windows.net/\",\r\n \"table\": \"https://pscmdlets.table.core.windows.net/\",\r\n \"file\": \"https://pscmdlets.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ASEBVTRG/providers/Microsoft.Storage/storageAccounts/asebvtrgdiag506\",\r\n \"name\": \"asebvtrgdiag506\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"nilsha\",\r\n \"Purpose\": \"BVT\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-07T04:15:40.0622848Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-07T04:15:40.0622848Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-07T04:15:39.9841543Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://asebvtrgdiag506.blob.core.windows.net/\",\r\n \"queue\": \"https://asebvtrgdiag506.queue.core.windows.net/\",\r\n \"table\": \"https://asebvtrgdiag506.table.core.windows.net/\",\r\n \"file\": \"https://asebvtrgdiag506.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/bvtsa\",\r\n \"name\": \"bvtsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"DeleteBy\": \"01-2025\",\r\n \"Owner\": \"sarath\",\r\n \"Purpose\": \" BVT\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-24T09:52:59.9944599Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-24T09:52:59.9944599Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-01-24T09:52:59.931997Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://bvtsa.blob.core.windows.net/\",\r\n \"queue\": \"https://bvtsa.queue.core.windows.net/\",\r\n \"table\": \"https://bvtsa.table.core.windows.net/\",\r\n \"file\": \"https://bvtsa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://bvtsa-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://bvtsa-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://bvtsa-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/chandrikarg/providers/Microsoft.Storage/storageAccounts/chandrikargdiag444\",\r\n \"name\": \"chandrikargdiag444\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MAB Used\": \"Yes\",\r\n \"Delete By\": \"12-2019\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"12-2019\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-10-04T07:55:33.3992134Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-10-04T07:55:33.3992134Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-10-04T07:55:33.3367633Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://chandrikargdiag444.blob.core.windows.net/\",\r\n \"queue\": \"https://chandrikargdiag444.queue.core.windows.net/\",\r\n \"table\": \"https://chandrikargdiag444.table.core.windows.net/\",\r\n \"file\": \"https://chandrikargdiag444.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675westus\",\r\n \"name\": \"da1675westus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-11T03:00:14.0927449Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-11T03:00:14.0927449Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-08-01T05:09:14.4960964Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://da1675westus.blob.core.windows.net/\",\r\n \"queue\": \"https://da1675westus.queue.core.windows.net/\",\r\n \"table\": \"https://da1675westus.table.core.windows.net/\",\r\n \"file\": \"https://da1675westus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Storage/storageAccounts/pstestsaa\",\r\n \"name\": \"pstestsaa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-09-17T09:10:01.792662Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-09-17T09:10:01.792662Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-09-17T09:10:01.4489133Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pstestsaa.blob.core.windows.net/\",\r\n \"queue\": \"https://pstestsaa.queue.core.windows.net/\",\r\n \"table\": \"https://pstestsaa.table.core.windows.net/\",\r\n \"file\": \"https://pstestsaa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sdkrg/providers/Microsoft.Storage/storageAccounts/sdksa\",\r\n \"name\": \"sdksa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-12-12T10:29:29.1491857Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-12-12T10:29:29.1491857Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-12-12T10:29:29.1023271Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sdksa.blob.core.windows.net/\",\r\n \"queue\": \"https://sdksa.queue.core.windows.net/\",\r\n \"table\": \"https://sdksa.table.core.windows.net/\",\r\n \"file\": \"https://sdksa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sdksa-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sdksa-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sdksa-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sisi-RSV/providers/Microsoft.Storage/storageAccounts/sisisa\",\r\n \"name\": \"sisisa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-29T06:19:00.3203156Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-06-29T06:19:00.3203156Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-06-29T06:19:00.1953245Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sisisa.blob.core.windows.net/\",\r\n \"queue\": \"https://sisisa.queue.core.windows.net/\",\r\n \"table\": \"https://sisisa.table.core.windows.net/\",\r\n \"file\": \"https://sisisa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/mayankRG/providers/Microsoft.Storage/storageAccounts/storageaccountmayan9414\",\r\n \"name\": \"storageaccountmayan9414\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"MABUsed\": \" Yes\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-05T15:34:35.0369874Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-05T15:34:35.0369874Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-05T15:34:34.9744891Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storageaccountmayan9414.blob.core.windows.net/\",\r\n \"queue\": \"https://storageaccountmayan9414.queue.core.windows.net/\",\r\n \"table\": \"https://storageaccountmayan9414.table.core.windows.net/\",\r\n \"file\": \"https://storageaccountmayan9414.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675westeurope\",\r\n \"name\": \"da1675westeurope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-23T00:19:32.2152664Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-03-23T00:19:32.2152664Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-07-26T01:41:18.4576439Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://da1675westeurope.blob.core.windows.net/\",\r\n \"queue\": \"https://da1675westeurope.queue.core.windows.net/\",\r\n \"table\": \"https://da1675westeurope.table.core.windows.net/\",\r\n \"file\": \"https://da1675westeurope.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westeurope\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/00prjai32tb/providers/Microsoft.Storage/storageAccounts/00prjai32tbdiag\",\r\n \"name\": \"00prjai32tbdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"mkherani\",\r\n \"Purpose\": \"SoftDeleteTesting\",\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"08-2019\",\r\n \"AutoShutdown\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-28T10:45:33.4461465Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-28T10:45:33.4461465Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-28T10:45:33.3211253Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://00prjai32tbdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://00prjai32tbdiag.queue.core.windows.net/\",\r\n \"table\": \"https://00prjai32tbdiag.table.core.windows.net/\",\r\n \"file\": \"https://00prjai32tbdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ASEBVTRG/providers/Microsoft.Storage/storageAccounts/asebvtrgdiag\",\r\n \"name\": \"asebvtrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"nilsha\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-04T08:35:42.1082667Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-01-04T08:35:42.1082667Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-01-04T08:35:42.0145167Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://asebvtrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://asebvtrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://asebvtrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://asebvtrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/chandrikarg/providers/Microsoft.Storage/storageAccounts/chandrikargdiag\",\r\n \"name\": \"chandrikargdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Purpose\": \" Testing\",\r\n \"Owner\": \"chgonugu\",\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"12-2019\",\r\n \"Delete By\": \"12-2019\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"Logging, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-20T10:54:28.3059743Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-05-20T10:54:28.3059743Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-05-20T10:54:28.2122062Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://chandrikargdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://chandrikargdiag.queue.core.windows.net/\",\r\n \"table\": \"https://chandrikargdiag.table.core.windows.net/\",\r\n \"file\": \"https://chandrikargdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti215\",\r\n \"name\": \"containerautoprotecti215\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"01-2021\",\r\n \"Owner\": \"shrja\",\r\n \"Mab Used\": \"Yes\",\r\n \"AutoShutdown\": \"No\",\r\n \"Purpose\": \"Testing\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-06T11:16:42.7172178Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-06T11:16:42.7172178Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-06T11:16:42.639154Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://containerautoprotecti215.blob.core.windows.net/\",\r\n \"queue\": \"https://containerautoprotecti215.queue.core.windows.net/\",\r\n \"table\": \"https://containerautoprotecti215.table.core.windows.net/\",\r\n \"file\": \"https://containerautoprotecti215.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti667\",\r\n \"name\": \"containerautoprotecti667\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"11-2020\",\r\n \"Owner\": \"shrja\",\r\n \"MabUsed\": \"Yes\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-06T08:27:10.5973243Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-06T08:27:10.5973243Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-06T08:27:10.5192188Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://containerautoprotecti667.blob.core.windows.net/\",\r\n \"queue\": \"https://containerautoprotecti667.queue.core.windows.net/\",\r\n \"table\": \"https://containerautoprotecti667.table.core.windows.net/\",\r\n \"file\": \"https://containerautoprotecti667.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotectiond\",\r\n \"name\": \"containerautoprotectiond\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2021\",\r\n \"AutoShutdown\": \"No\",\r\n \"Owner\": \"shrja\",\r\n \"Purpose\": \"testing\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-30T08:35:17.4533955Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-30T08:35:17.4533955Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-06-30T08:35:17.3752244Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://containerautoprotectiond.blob.core.windows.net/\",\r\n \"queue\": \"https://containerautoprotectiond.queue.core.windows.net/\",\r\n \"table\": \"https://containerautoprotectiond.table.core.windows.net/\",\r\n \"file\": \"https://containerautoprotectiond.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675southeastasia\",\r\n \"name\": \"da1675southeastasia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-07T23:26:02.8958366Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-07T23:26:02.8958366Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-08-01T05:09:13.3819891Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://da1675southeastasia.blob.core.windows.net/\",\r\n \"queue\": \"https://da1675southeastasia.queue.core.windows.net/\",\r\n \"table\": \"https://da1675southeastasia.table.core.windows.net/\",\r\n \"file\": \"https://da1675southeastasia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/anagrarg/providers/Microsoft.Storage/storageAccounts/dnwjfewkfewnjf\",\r\n \"name\": \"dnwjfewkfewnjf\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-24T05:39:50.0114092Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-24T05:39:50.0114092Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-06-24T05:39:49.9332431Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://dnwjfewkfewnjf.blob.core.windows.net/\",\r\n \"queue\": \"https://dnwjfewkfewnjf.queue.core.windows.net/\",\r\n \"table\": \"https://dnwjfewkfewnjf.table.core.windows.net/\",\r\n \"file\": \"https://dnwjfewkfewnjf.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://dnwjfewkfewnjf-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://dnwjfewkfewnjf-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://dnwjfewkfewnjf-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/anagrarg/providers/Microsoft.Storage/storageAccounts/fsintegsa\",\r\n \"name\": \"fsintegsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-23T12:08:30.9983405Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-23T12:08:30.9983405Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-06-23T12:08:30.9358747Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://fsintegsa.blob.core.windows.net/\",\r\n \"queue\": \"https://fsintegsa.queue.core.windows.net/\",\r\n \"table\": \"https://fsintegsa.table.core.windows.net/\",\r\n \"file\": \"https://fsintegsa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://fsintegsa-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://fsintegsa-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://fsintegsa-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/gesahoo/providers/Microsoft.Storage/storageAccounts/gesahoodiag\",\r\n \"name\": \"gesahoodiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"gesahoo\",\r\n \"Purpose\": \"Portal\",\r\n \"DeleteBy\": \"01-2021\",\r\n \"AutoShutdown\": \"No\",\r\n \"MAB Used\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-29T09:06:31.7196907Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-29T09:06:31.7196907Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-06-29T09:06:31.6259922Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://gesahoodiag.blob.core.windows.net/\",\r\n \"queue\": \"https://gesahoodiag.queue.core.windows.net/\",\r\n \"table\": \"https://gesahoodiag.table.core.windows.net/\",\r\n \"file\": \"https://gesahoodiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/igniterg/providers/Microsoft.Storage/storageAccounts/ignitergdiag402\",\r\n \"name\": \"ignitergdiag402\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-07T23:26:03.5052628Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-07T23:26:03.5052628Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-01-27T09:36:47.4551714Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ignitergdiag402.blob.core.windows.net/\",\r\n \"queue\": \"https://ignitergdiag402.queue.core.windows.net/\",\r\n \"table\": \"https://ignitergdiag402.table.core.windows.net/\",\r\n \"file\": \"https://ignitergdiag402.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/igniterg/providers/Microsoft.Storage/storageAccounts/ignitergdisks316\",\r\n \"name\": \"ignitergdisks316\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-07T23:26:03.6302472Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-07T23:26:03.6302472Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-01-27T09:36:47.5151759Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ignitergdisks316.blob.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/mkheranisd02/providers/Microsoft.Storage/storageAccounts/mkheranisd02diag\",\r\n \"name\": \"mkheranisd02diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"Owner\": \"mkherani\",\r\n \"DeleteBy\": \"09/20\",\r\n \"AutoShutdown\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T09:13:52.4251607Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-20T09:13:52.4251607Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-20T09:13:52.3626864Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mkheranisd02diag.blob.core.windows.net/\",\r\n \"queue\": \"https://mkheranisd02diag.queue.core.windows.net/\",\r\n \"table\": \"https://mkheranisd02diag.table.core.windows.net/\",\r\n \"file\": \"https://mkheranisd02diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranitestsa\",\r\n \"name\": \"mkheranitestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-10T05:47:14.9539559Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-07-10T05:47:14.9539559Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-10T05:47:14.8602331Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mkheranitestsa.blob.core.windows.net/\",\r\n \"queue\": \"https://mkheranitestsa.queue.core.windows.net/\",\r\n \"table\": \"https://mkheranitestsa.table.core.windows.net/\",\r\n \"file\": \"https://mkheranitestsa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/Nilay-RG/providers/Microsoft.Storage/storageAccounts/nilshaafstest\",\r\n \"name\": \"nilshaafstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"Delete By\": \"05-2099\",\r\n \"Owner\": \"nilsha\",\r\n \"Purpose\": \" Testing\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-01T10:35:14.0132717Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-01T10:35:14.0132717Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-01T10:35:13.9507912Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nilshaafstest.blob.core.windows.net/\",\r\n \"queue\": \"https://nilshaafstest.queue.core.windows.net/\",\r\n \"table\": \"https://nilshaafstest.table.core.windows.net/\",\r\n \"file\": \"https://nilshaafstest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://nilshaafstest-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://nilshaafstest-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://nilshaafstest-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestrestoreseacan/providers/Microsoft.Storage/storageAccounts/pstestrestoreseacan\",\r\n \"name\": \"pstestrestoreseacan\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-05T12:34:18.5205164Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-05T12:34:18.5205164Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-05T12:34:18.4267695Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pstestrestoreseacan.blob.core.windows.net/\",\r\n \"queue\": \"https://pstestrestoreseacan.queue.core.windows.net/\",\r\n \"table\": \"https://pstestrestoreseacan.table.core.windows.net/\",\r\n \"file\": \"https://pstestrestoreseacan.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestFSRG3rty7d7s/providers/Microsoft.Storage/storageAccounts/pstestsa3rty7d7s\",\r\n \"name\": \"pstestsa3rty7d7s\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-19T07:47:47.9374188Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-10-19T07:47:47.9374188Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-10-19T07:47:47.8592987Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pstestsa3rty7d7s.blob.core.windows.net/\",\r\n \"queue\": \"https://pstestsa3rty7d7s.queue.core.windows.net/\",\r\n \"table\": \"https://pstestsa3rty7d7s.table.core.windows.net/\",\r\n \"file\": \"https://pstestsa3rty7d7s.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/pstestsa6\",\r\n \"name\": \"pstestsa6\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-09T10:30:22.3901494Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-09T10:30:22.3901494Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-01-09T10:30:22.3120677Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pstestsa6.blob.core.windows.net/\",\r\n \"queue\": \"https://pstestsa6.queue.core.windows.net/\",\r\n \"table\": \"https://pstestsa6.table.core.windows.net/\",\r\n \"file\": \"https://pstestsa6.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://pstestsa6-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://pstestsa6-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://pstestsa6-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag\",\r\n \"name\": \"pstestwlrg1bca8diag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Mab Used\": \"Yes\",\r\n \"MABUsed\": \"Yes\",\r\n \"Owner\": \"sisi\",\r\n \"DeleteBy\": \"12-2099\",\r\n \"Purpose\": \"PS bvt\",\r\n \"AutoShutdown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-15T07:44:59.2464847Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-15T07:44:59.2464847Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-15T07:44:59.1683711Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://pstestwlrg1bca8diag.blob.core.windows.net/\",\r\n \"queue\": \"https://pstestwlrg1bca8diag.queue.core.windows.net/\",\r\n \"table\": \"https://pstestwlrg1bca8diag.table.core.windows.net/\",\r\n \"file\": \"https://pstestwlrg1bca8diag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sa20200408\",\r\n \"name\": \"sa20200408\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-08T05:23:30.4700861Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-08T05:23:30.4700861Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-08T05:23:30.4075842Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sa20200408.blob.core.windows.net/\",\r\n \"queue\": \"https://sa20200408.queue.core.windows.net/\",\r\n \"table\": \"https://sa20200408.table.core.windows.net/\",\r\n \"file\": \"https://sa20200408.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sa20200408-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sa20200408-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sa20200408-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sambitsa\",\r\n \"name\": \"sambitsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-10-14T06:24:43.7660428Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-10-14T06:24:43.7660428Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-10-14T06:24:43.6878696Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sambitsa.blob.core.windows.net/\",\r\n \"queue\": \"https://sambitsa.queue.core.windows.net/\",\r\n \"table\": \"https://sambitsa.table.core.windows.net/\",\r\n \"file\": \"https://sambitsa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sambitsa-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sambitsa-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sambitsa-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sam-rg-sea-can/providers/Microsoft.Storage/storageAccounts/samsaseacan\",\r\n \"name\": \"samsaseacan\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-17T10:53:29.5799967Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-08-17T10:53:29.5799967Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-08-17T10:53:29.4706234Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://samsaseacan.blob.core.windows.net/\",\r\n \"queue\": \"https://samsaseacan.queue.core.windows.net/\",\r\n \"table\": \"https://samsaseacan.table.core.windows.net/\",\r\n \"file\": \"https://samsaseacan.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsa\",\r\n \"name\": \"sarathsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-23T04:50:06.8287357Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-23T04:50:06.8287357Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-23T04:50:06.7818295Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sarathsa.blob.core.windows.net/\",\r\n \"queue\": \"https://sarathsa.queue.core.windows.net/\",\r\n \"table\": \"https://sarathsa.table.core.windows.net/\",\r\n \"file\": \"https://sarathsa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sarathsa-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sarathsa-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sarathsa-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathsa123\",\r\n \"name\": \"sarathsa123\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-28T17:35:05.9400515Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-08-28T17:35:05.9400515Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-28T17:35:05.8775784Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sarathsa123.blob.core.windows.net/\",\r\n \"queue\": \"https://sarathsa123.queue.core.windows.net/\",\r\n \"table\": \"https://sarathsa123.table.core.windows.net/\",\r\n \"file\": \"https://sarathsa123.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sarathtestsa\",\r\n \"name\": \"sarathtestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-13T07:27:34.966148Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-13T07:27:34.966148Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-13T07:27:34.8880276Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sarathtestsa.blob.core.windows.net/\",\r\n \"queue\": \"https://sarathtestsa.queue.core.windows.net/\",\r\n \"table\": \"https://sarathtestsa.table.core.windows.net/\",\r\n \"file\": \"https://sarathtestsa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sarathtestsa-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sarathtestsa-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sarathtestsa-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sdkrg/providers/Microsoft.Storage/storageAccounts/sdkrgdiag\",\r\n \"name\": \"sdkrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"02-2020\",\r\n \"owner\": \"sarath\",\r\n \"Purpose\": \" Testing\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-12-27T04:45:04.9772496Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-12-27T04:45:04.9772496Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-12-27T04:45:04.9147308Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sdkrgdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://sdkrgdiag.queue.core.windows.net/\",\r\n \"table\": \"https://sdkrgdiag.table.core.windows.net/\",\r\n \"file\": \"https://sdkrgdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Storage/storageAccounts/shrja2008groupdiag\",\r\n \"name\": \"shrja2008groupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"01-2021\",\r\n \"Mab Used\": \"Yes\",\r\n \"Owner\": \"Shrja\",\r\n \"Purpose\": \"Testing\",\r\n \"Auto Shutdown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-06T11:18:41.1236065Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-06T11:18:41.1236065Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-06T11:18:41.0298512Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://shrja2008groupdiag.blob.core.windows.net/\",\r\n \"queue\": \"https://shrja2008groupdiag.queue.core.windows.net/\",\r\n \"table\": \"https://shrja2008groupdiag.table.core.windows.net/\",\r\n \"file\": \"https://shrja2008groupdiag.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shrja2008_group/providers/Microsoft.Storage/storageAccounts/shrja2008groupdisks\",\r\n \"name\": \"shrja2008groupdisks\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"DeleteBy\": \"01-2021\",\r\n \"Mab Used\": \"Yes\",\r\n \"Owner\": \"Shrja\",\r\n \"Purpose\": \"Testing\",\r\n \"Auto Shutdown\": \"No\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-06T11:18:41.1079848Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-06T11:18:41.1079848Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-06T11:18:41.0298512Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://shrja2008groupdisks.blob.core.windows.net/\",\r\n \"queue\": \"https://shrja2008groupdisks.queue.core.windows.net/\",\r\n \"table\": \"https://shrja2008groupdisks.table.core.windows.net/\",\r\n \"file\": \"https://shrja2008groupdisks.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Storage/storageAccounts/shswainrgdonotusedisks\",\r\n \"name\": \"shswainrgdonotusedisks\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"Owner\": \"shswain\",\r\n \"Purpose\": \"Dev Testing\",\r\n \"DeleteBy\": \"12-2022\",\r\n \"MAB Used\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T11:17:49.3069111Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-16T11:17:49.3069111Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-16T11:17:49.2443619Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://shswainrgdonotusedisks.blob.core.windows.net/\",\r\n \"queue\": \"https://shswainrgdonotusedisks.queue.core.windows.net/\",\r\n \"table\": \"https://shswainrgdonotusedisks.table.core.windows.net/\",\r\n \"file\": \"https://shswainrgdonotusedisks.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675centralus\",\r\n \"name\": \"da1675centralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-11T03:00:11.5877561Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-11T03:00:11.5877561Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-08-01T05:09:12.0188738Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://da1675centralus.blob.core.windows.net/\",\r\n \"queue\": \"https://da1675centralus.queue.core.windows.net/\",\r\n \"table\": \"https://da1675centralus.table.core.windows.net/\",\r\n \"file\": \"https://da1675centralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sdkrg/providers/Microsoft.Storage/storageAccounts/sdkrgdiag847\",\r\n \"name\": \"sdkrgdiag847\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"DeleteBy\": \"01-2025\",\r\n \"Owner\": \"sarath\",\r\n \"MABUsed\": \" Yes\",\r\n \"Purpose\": \" BVT\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-26T12:47:05.8876435Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-26T12:47:05.8876435Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-26T12:47:05.8094858Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sdkrgdiag847.blob.core.windows.net/\",\r\n \"queue\": \"https://sdkrgdiag847.queue.core.windows.net/\",\r\n \"table\": \"https://sdkrgdiag847.table.core.windows.net/\",\r\n \"file\": \"https://sdkrgdiag847.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675southindia\",\r\n \"name\": \"da1675southindia\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-11T03:00:13.0378185Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2018-01-11T03:00:13.0378185Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2016-08-25T10:19:59.6565378Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://da1675southindia.blob.core.windows.net/\",\r\n \"queue\": \"https://da1675southindia.queue.core.windows.net/\",\r\n \"table\": \"https://da1675southindia.table.core.windows.net/\",\r\n \"file\": \"https://da1675southindia.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southindia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/mayankHyperledger/providers/Microsoft.Storage/storageAccounts/mtest3107d\",\r\n \"name\": \"mtest3107d\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"Owner\": \"mayaggar\",\r\n \"Purpose\": \"Testing\",\r\n \"MABUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-23T12:45:11.3513201Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-23T12:45:11.3513201Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-23T12:45:11.3044208Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mtest3107d.blob.core.windows.net/\",\r\n \"queue\": \"https://mtest3107d.queue.core.windows.net/\",\r\n \"table\": \"https://mtest3107d.table.core.windows.net/\",\r\n \"file\": \"https://mtest3107d.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675westcentralus\",\r\n \"name\": \"da1675westcentralus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T23:20:44.7253932Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-11-06T23:20:44.7253932Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-09-13T01:41:16.5180904Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://da1675westcentralus.blob.core.windows.net/\",\r\n \"queue\": \"https://da1675westcentralus.queue.core.windows.net/\",\r\n \"table\": \"https://da1675westcentralus.table.core.windows.net/\",\r\n \"file\": \"https://da1675westcentralus.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/chandrikarg/providers/Microsoft.Storage/storageAccounts/chandrikargdiag882\",\r\n \"name\": \"chandrikargdiag882\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {\r\n \"Mab Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-27T11:34:08.9020822Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-27T11:34:08.9020822Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-01-27T11:34:08.8552006Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://chandrikargdiag882.blob.core.windows.net/\",\r\n \"queue\": \"https://chandrikargdiag882.queue.core.windows.net/\",\r\n \"table\": \"https://chandrikargdiag882.table.core.windows.net/\",\r\n \"file\": \"https://chandrikargdiag882.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"uksouth\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/sarath-rg/providers/Microsoft.Storage/storageAccounts/sagermanywc\",\r\n \"name\": \"sagermanywc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"germanywestcentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-14T08:59:23.9938201Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-14T08:59:23.9938201Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-14T08:59:23.9156955Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sagermanywc.blob.core.windows.net/\",\r\n \"queue\": \"https://sagermanywc.queue.core.windows.net/\",\r\n \"table\": \"https://sagermanywc.table.core.windows.net/\",\r\n \"file\": \"https://sagermanywc.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"germanywestcentral\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"germanynorth\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://sagermanywc-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://sagermanywc-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://sagermanywc-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675eastus2euap\",\r\n \"name\": \"da1675eastus2euap\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-09-19T13:41:16.9306076Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-09-19T13:41:16.9306076Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-09-19T13:41:16.9246087Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://da1675eastus2euap.blob.core.windows.net/\",\r\n \"queue\": \"https://da1675eastus2euap.queue.core.windows.net/\",\r\n \"table\": \"https://da1675eastus2euap.table.core.windows.net/\",\r\n \"file\": \"https://da1675eastus2euap.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/Blob-Backup/providers/Microsoft.Storage/storageAccounts/mabblobbackuptest\",\r\n \"name\": \"mabblobbackuptest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"Owner\": \"nilsha\",\r\n \"Delete By\": \"12-2099\",\r\n \"Purpose\": \"Testing\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-11T00:46:33.3841252Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-02-11T00:46:33.3841252Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-11T00:46:33.3365796Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mabblobbackuptest.blob.core.windows.net/\",\r\n \"queue\": \"https://mabblobbackuptest.queue.core.windows.net/\",\r\n \"table\": \"https://mabblobbackuptest.table.core.windows.net/\",\r\n \"file\": \"https://mabblobbackuptest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://mabblobbackuptest-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://mabblobbackuptest-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://mabblobbackuptest-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/afssoftdeleterg/providers/Microsoft.Storage/storageAccounts/softdeletesa\",\r\n \"name\": \"softdeletesa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"sarath\",\r\n \"MABUsed\": \"Yes\",\r\n \"Purpose\": \" Testing\",\r\n \"DeleteBy\": \"05-2021\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-12T08:03:11.5315566Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-12T08:03:11.5315566Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-12T08:03:11.4847211Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://softdeletesa.blob.core.windows.net/\",\r\n \"queue\": \"https://softdeletesa.queue.core.windows.net/\",\r\n \"table\": \"https://softdeletesa.table.core.windows.net/\",\r\n \"file\": \"https://softdeletesa.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://softdeletesa-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://softdeletesa-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://softdeletesa-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/chandrikarg/providers/Microsoft.Storage/storageAccounts/chandrikargdiag791\",\r\n \"name\": \"chandrikargdiag791\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"DeleteBy\": \"01-2021\",\r\n \"MabUsed\": \"Yes\"\r\n },\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-12T14:01:23.3472299Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-12T14:01:23.3472299Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-12T14:01:23.3159657Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://chandrikargdiag791.blob.core.windows.net/\",\r\n \"queue\": \"https://chandrikargdiag791.queue.core.windows.net/\",\r\n \"table\": \"https://chandrikargdiag791.table.core.windows.net/\",\r\n \"file\": \"https://chandrikargdiag791.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvUFNUZXN0Vk01NDU0ODM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM545483\",\r\n \"adminUsername\": \"demouser\",\r\n \"adminPassword\": \"54548c5f-191\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": false\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://chandrikargdiag791.blob.core.windows.net/\"\r\n }\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"05-2020\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21978e08-61d9-4951-aac3-a0c8bc43bf51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1143" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/e44f4cd4-3892-46a2-bad7-94e333589135?api-version=2020-06-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e44f4cd4-3892-46a2-bad7-94e333589135" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e8ffc10c-f027-4110-a041-a98d20e05cc2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113004Z:e8ffc10c-f027-4110-a041-a98d20e05cc2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:30:03 GMT" + ], + "Content-Length": [ + "1897" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"PSTestVM545483\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Purpose\": \"PSTest\",\r\n \"DeleteBy\": \"05-2020\",\r\n \"MabUsed\": \"Yes\",\r\n \"AutoShutDown\": \"No\",\r\n \"Owner\": \"sarath\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"40969f41-271d-4f7a-92c1-e9953ac57fed\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.3866.2008081933\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"PSTestVM545483\",\r\n \"adminUsername\": \"demouser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"patchSettings\": {\r\n \"patchMode\": \"Manual\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Network/networkInterfaces/PSTestNIC545483\"\r\n }\r\n ]\r\n },\r\n \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": true,\r\n \"storageUri\": \"https://chandrikargdiag791.blob.core.windows.net/\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/e44f4cd4-3892-46a2-bad7-94e333589135?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2U0NGY0Y2Q0LTM4OTItNDZhMi1iYWQ3LTk0ZTMzMzU4OTEzNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "50" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29987" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "895f892f-fe6c-481e-b18b-a090ecb2ae57" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "71503e15-3445-4d1f-9170-57958de75ce3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113014Z:71503e15-3445-4d1f-9170-57958de75ce3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:30:14 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T17:00:01.8238285+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e44f4cd4-3892-46a2-bad7-94e333589135\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/e44f4cd4-3892-46a2-bad7-94e333589135?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2U0NGY0Y2Q0LTM4OTItNDZhMi1iYWQ3LTk0ZTMzMzU4OTEzNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29986" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d39b44c4-b4c4-4e18-9b88-c8f118bcd551" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "a0f08b86-570a-4e3d-9aac-e8cc86b402e1" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113104Z:a0f08b86-570a-4e3d-9aac-e8cc86b402e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:31:04 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T17:00:01.8238285+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e44f4cd4-3892-46a2-bad7-94e333589135\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/e44f4cd4-3892-46a2-bad7-94e333589135?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zL2U0NGY0Y2Q0LTM4OTItNDZhMi1iYWQ3LTk0ZTMzMzU4OTEzNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29984" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "19c67d12-3d86-48cf-8379-ab079c8be21b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "b1adc811-fc94-4d57-80e9-8086ee2dcf77" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113155Z:b1adc811-fc94-4d57-80e9-8086ee2dcf77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:31:54 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T17:00:01.8238285+05:30\",\r\n \"endTime\": \"2020-08-26T17:01:40.2614455+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e44f4cd4-3892-46a2-bad7-94e333589135\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/centraluseuap/publishers?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9wdWJsaXNoZXJzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19f7fe8d-0e3f-4109-be5a-62a0b79a1570" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "d2806b04-0017-4aaf-a968-3d30f5cf389f_132427832282847569" + ], + "x-ms-request-id": [ + "35fef975-8e76-4476-a8c7-ffe534fc127c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "470760f7-5305-4cf7-b0c9-30225aa867b7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113159Z:470760f7-5305-4cf7-b0c9-30225aa867b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:31:59 GMT" + ], + "Content-Length": [ + "328281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"128technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/128technology\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"1580863854728\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/1580863854728\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"1583465680865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/1583465680865\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"1585118004523\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/1585118004523\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"1e\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/1e\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"2021ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/2021ai\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"3cx-pbx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/3cx-pbx\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"42crunch1580391915541\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/42crunch1580391915541\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"5nine-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/5nine-software-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"accedian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/accedian\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"accelario1579101623356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/accelario1579101623356\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"accessdata-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/accessdata-group\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"accops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/accops\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"aciworldwide\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/aciworldwide\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"acronis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/acronis\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"actian-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/actian-corp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"activeops\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/activeops\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"adastracorporation-4028356\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/adastracorporation-4028356\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"adgs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/adgs\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"advantys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/advantys\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"aelf\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/aelf\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"affinio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/affinio\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"aggregion-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/aggregion-ltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ahnlabinc1584495174865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ahnlabinc1584495174865\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ahnlabinc1584495467593\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ahnlabinc1584495467593\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"airalabrus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/airalabrus\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"akamai-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/akamai-technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"akumo-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/akumo-software\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"al-tamamunitedtradingcontractingcompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/al-tamamunitedtradingcontractingcompany\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"alicetrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/alicetrix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"altair-engineering-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/altair-engineering-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"altamira-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/altamira-corporation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"altova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/altova\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"antmedia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/antmedia\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"aod\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/aod\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"appcara\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/appcara\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"appiyo_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/appiyo_technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"appmint_inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/appmint_inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"apps-4-rent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/apps-4-rent\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"appscale-marketplace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/appscale-marketplace\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"aquaforest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/aquaforest\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"arabesque-group\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/arabesque-group\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"arcblock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/arcblock\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"arcesb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/arcesb\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"arcserveusallc-marketing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/arcserveusallc-marketing\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"arista-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/arista-networks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ariwontollc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ariwontollc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"artificial-intelligence-techniques-sl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/artificial-intelligence-techniques-sl\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"arubanetworks-4922182\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/arubanetworks-4922182\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"astadia-1148316\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/astadia-1148316\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"asyscosoftwarebv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/asyscosoftwarebv\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ataccama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ataccama\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"atlgaming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/atlgaming\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"audiocodes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/audiocodes\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"automationanywhere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/automationanywhere\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"avanseus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/avanseus\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"aveva1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/aveva1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"avi-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/avi-networks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"axedrasag1590581171549\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/axedrasag1590581171549\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"axsguardablenv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/axsguardablenv\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"axshco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/axshco\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"axxana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/axxana\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"azure-dockit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/azure-dockit\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"azurecyclecloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/azurecyclecloud\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/AzureDatabricks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"azureopenshift\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/azureopenshift\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"AzureRT.ManagedServices.TestExtPublisher00\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/AzureRT.ManagedServices.TestExtPublisher00\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"AzureRT.PIRCore.CAPSBvt.ExtPublisher1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/AzureRT.PIRCore.CAPSBvt.ExtPublisher1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtBvt.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/AzureRT.PIRCore.CAPSExtBvt.1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"azuretesting2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/azuretesting2\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"azuretesting3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/azuretesting3\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"baas-techbureau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/baas-techbureau\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"baffle-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/baffle-io\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bayware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bayware\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bellsoft1582871421940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bellsoft1582871421940\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"betsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/betsol\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"beyondtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/beyondtrust\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bi-builders-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bi-builders-as\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bissantechnology1583581147809\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bissantechnology1583581147809\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bitdefendercybersecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bitdefendercybersecurity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bitnami\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bitnami\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"black-duck-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/black-duck-software\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"blackbird\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/blackbird\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"blk-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/blk-technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bloombase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bloombase\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bluecat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bluecat\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"blueprismlimited-4827145\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/blueprismlimited-4827145\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"boardpacpvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/boardpacpvtltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bocada\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bocada\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"botanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/botanalytics\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bravura-software-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bravura-software-llc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bright-computing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bright-computing\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"brightcomputing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/brightcomputing\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"bt-americas-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/bt-americas-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"canonical-test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/canonical-test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"carto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/carto\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cask\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cask\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"castaigroupinc1595243474856\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/castaigroupinc1595243474856\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cavirin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cavirin\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cayosoftinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cayosoftinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cdatasoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cdatasoftware\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"celum-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/celum-gmbh\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"center-for-internet-security-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/center-for-internet-security-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"centeritysystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/centeritysystems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"centrocomputerspa1584528117084\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/centrocomputerspa1584528117084\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cinchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cinchy\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cinegy-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cinegy-gmbh\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cirruswaveinc1579234787943\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cirruswaveinc1579234787943\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Citrix.ADC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Citrix.ADC\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"clone-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/clone-systems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"clouber\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/clouber\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloud-checkr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloud-checkr\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloud-infrastructure-services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloud-infrastructure-services\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudcover\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudcover\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudenablers-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudenablers-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudentity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudflare\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudflare\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudlanes\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudlanes\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudmavensolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudmavensolutions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudplan-gmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudplan-gmbh\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cloudwhizsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cloudwhizsolutions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cncf-upstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cncf-upstream\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"codetwo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/codetwo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cognitive-scale\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cognitive-scale\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cognizant\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cognizant\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"coin-sciences-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/coin-sciences-ltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"collabcloudlimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/collabcloudlimited\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"compellon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/compellon\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"conflux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/conflux\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"containeraider\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/containeraider\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"contiamogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/contiamogmbh\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"controlcase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/controlcase\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"core-stack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/core-stack\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cpanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cpanel\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"crunchyard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/crunchyard\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cryptocom1585727786636\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cryptocom1585727786636\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cubebackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cubebackup\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cyberark\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cyberark\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cybernetica-as\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cybernetica-as\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"cyxtera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/cyxtera\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"d4t4_solutions-1164305\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/d4t4_solutions-1164305\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"databricks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/databricks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"datacore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/datacore\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dataguiseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dataguiseinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"datanomers1584919038987\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/datanomers1584919038987\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"datanova\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/datanova\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"datapredsa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/datapredsa\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dataroadtechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dataroadtechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"datavirtualitygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/datavirtualitygmbh\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dbs-h\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dbs-h\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ddn-whamcloud-5345716\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ddn-whamcloud-5345716\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Debian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Debian\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dece-4446019\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dece-4446019\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"decisosalesbv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/decisosalesbv\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"deepcognitioninc1593512758156\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/deepcognitioninc1593512758156\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"delphix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/delphix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"denodo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/denodo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"devfactory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/devfactory\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"device42inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/device42inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"deviceauthorityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/deviceauthorityinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"devolutionsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/devolutionsinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"devopsgroup-uk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/devopsgroup-uk\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dh2icompany\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dh2icompany\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dhi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dhi\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"diagramics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/diagramics\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dicomsystems1584107398321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dicomsystems1584107398321\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"diehl-metering\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/diehl-metering\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"digisitesystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/digisitesystems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"digitaldefenseinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/digitaldefenseinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"digitamizeinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/digitamizeinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"diladele\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/diladele\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dimensionalmechanics-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dimensionalmechanics-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"diqa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/diqa\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"diyotta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/diyotta\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"djiindustrialincus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/djiindustrialincus\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dorabot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dorabot\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dremiocorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dremiocorporation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"drizti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/drizti\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dyadic_security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dyadic_security\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"e-magicinc1587696283171\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/e-magicinc1587696283171\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"eastwind-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/eastwind-networks-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"easysoftwaresro1593005637384\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/easysoftwaresro1593005637384\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ecessa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ecessa\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"edgenetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/edgenetworks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"education4sight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/education4sight\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"electric-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/electric-cloud\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"elevateiot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/elevateiot\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"eleven01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/eleven01\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"enterprisedb-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/enterprisedb-corp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"enterpriseworx-it\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/enterpriseworx-it\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"eproe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/eproe\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ergoninformatikag1581586464404\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ergoninformatikag1581586464404\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"esdenera\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/esdenera\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"esetresearch1579795941720\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/esetresearch1579795941720\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"esyon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/esyon\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"eventtracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/eventtracker\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"exact\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/exact\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"exivity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/exivity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"exonar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/exonar\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"fatpipe-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/fatpipe-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"filecatalyst\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/filecatalyst\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"filemagellc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/filemagellc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"fiorano\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/fiorano\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"fireeye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/fireeye\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"flashgrid-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/flashgrid-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"flexbby\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/flexbby\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"flexbby-5255860\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/flexbby-5255860\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"flexify-io\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/flexify-io\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"flexxibleit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/flexxibleit\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"flowmon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/flowmon\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"flynet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/flynet\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"forcepoint-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/forcepoint-llc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"forescout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/forescout\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"formpipesoftwareab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/formpipesoftwareab\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"fortanix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/fortanix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"fotopiatechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/fotopiatechnologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"foxiteuropegmbh1585901066320\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/foxiteuropegmbh1585901066320\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"fujitsu_fast\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/fujitsu_fast\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"gapteq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/gapteq\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"gatlingcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/gatlingcorp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"genymobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/genymobile\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"gigamon-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/gigamon-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"glantoninc1591876792991\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/glantoninc1591876792991\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"gluwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/gluwareinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"graphistry\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/graphistry\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"great-software-laboratory-private-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/great-software-laboratory-private-limited\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"greycorbelsolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/greycorbelsolutions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"guardicore\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/guardicore\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hackerbay\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hackerbay\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hackershub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hackershub\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"haivisionsystemsinc1580780591922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/haivisionsystemsinc1580780591922\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"haproxy-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/haproxy-technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"harpaitalia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/harpaitalia\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hashhub\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hashhub\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hcl-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hcl-technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"heimdall-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/heimdall-data\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"help-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/help-systems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"helpyio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/helpyio\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"heretechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/heretechnologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"huawei\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/huawei\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hubstor-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hubstor-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hystaxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hystaxinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"i-exceed-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/i-exceed-technology\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ibm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ibm\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"iboss\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/iboss\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"iconics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/iconics\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"icubeconsultancyservicesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/icubeconsultancyservicesinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"iguazio-5069960\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/iguazio-5069960\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"image-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/image-technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"impetustechnologiesinc1591959591877\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/impetustechnologiesinc1591959591877\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"incorta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/incorta\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"indexima1594300233028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/indexima1594300233028\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"industry-weapon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/industry-weapon\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"industryweapon1587162781833\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/industryweapon1587162781833\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"influxdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/influxdata\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"infogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/infogix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"infront-consulting-group-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/infront-consulting-group-ltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"infscapeughaftungsbeschrnkt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/infscapeughaftungsbeschrnkt\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ingenieurstudiohollaus1579587745438\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ingenieurstudiohollaus1579587745438\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ingrammicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ingrammicro\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"intel-bigdl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/intel-bigdl\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"intel-fpga\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/intel-fpga\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"intellicus-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/intellicus-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"internationaltrustmachinescorporation1582190033865\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/internationaltrustmachinescorporation1582190033865\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"intersystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/intersystems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"iofabric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/iofabric\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ipinfusion1590066770520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ipinfusion1590066770520\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ipswitch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ipswitch\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"iqsol\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/iqsol\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"irion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/irion\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"issp-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/issp-corporation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"isvtestukbigcat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/isvtestukbigcat\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"isvtestuklegacy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/isvtestuklegacy\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"it4bizdoo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/it4bizdoo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"iwnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/iwnamespace\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"izenda\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/izenda\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"jamcracker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/jamcracker\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"javlinltd1579185328273\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/javlinltd1579185328273\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"jetware-srl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/jetware-srl\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"jm-technology-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/jm-technology-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"jogetinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/jogetinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"juniper-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/juniper-networks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"justanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/justanalytics\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kadenallc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kadenallc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kalkitech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kalkitech\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Kaspersky.Lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Kaspersky.Lab\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"KasperskyLab.SecurityAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/KasperskyLab.SecurityAgent\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kazendi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kazendi\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kinetica\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kinetica\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kinvolk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kinvolk\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kobalt\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kobalt\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"konginc1581527938760\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/konginc1581527938760\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"konsys-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/konsys-ltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"koverseinc1588716263110\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/koverseinc1588716263110\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kryonsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kryonsystems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"krypc-technologies-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/krypc-technologies-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kyligence\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kyligence\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"kyvos-insights-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/kyvos-insights-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"lancom-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/lancom-systems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"lastline\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/lastline\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"leap-orbit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/leap-orbit\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"leostream-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/leostream-corporation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"lepide-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/lepide-software\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"libraesva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/libraesva\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"lightning-analyticsinc1582000647396\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/lightning-analyticsinc1582000647396\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"linuxbasedsystemsdesignltd1580878904727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/linuxbasedsystemsdesignltd1580878904727\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"liquid-files\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/liquid-files\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"liquidware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/liquidware\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"litespeedtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/litespeedtechnologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"litespeed_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/litespeed_technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"litionenergiegmbh1580128829115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/litionenergiegmbh1580128829115\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"litmusautomation1582760223280\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/litmusautomation1582760223280\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"lnw-softgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/lnw-softgmbh\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"lti-lt-infotech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/lti-lt-infotech\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"luminate-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/luminate-security\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"machinesense\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/machinesense\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"maidenhead-bridge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/maidenhead-bridge\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mapd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mapd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"marketplace-rdfe-caps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/marketplace-rdfe-caps\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mathworks-deployment\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mathworks-deployment\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mathworks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mathworks-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"matillion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/matillion\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"media3-technologies-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/media3-technologies-llc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mediatekinc1586141563888\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mediatekinc1586141563888\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"messagesolution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/messagesolution\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mettainnovations-4900054\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mettainnovations-4900054\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mfe_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mfe_azure\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"micro-focus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/micro-focus\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microlinkpcukltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microlinkpcukltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microolap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microolap\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microsoft-aks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microsoft-aks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microsoft-avere\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microsoft-avere\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microsoft-azure-batch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microsoft-azure-batch\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microsoft-azure-compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microsoft-azure-compute\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microsoft-azure-hdinsight\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microsoft-azure-hdinsight\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microsoft-crypto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microsoft-crypto\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microsoft-dsvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microsoft-dsvm\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microsoft-hyperv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microsoft-hyperv\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AdminCenter\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AKS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AKS\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.ActiveDirectory\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.ActiveDirectory.LinuxSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.ActiveDirectory.LinuxSSH\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Backup.Test.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Backup.Test.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Build.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Diagnostics.Build.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test012be407-61ea-4e45-a2c3-71a45999ca21-20191228083800\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test01971384-3044-413b-8b1c-33b5d461bf23-20200107051823\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test0225ec7d-b36c-4ac8-82f0-aa4fafaf10a9-20200111051346\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test025e16a1-328d-45a2-b7e3-71f7e4cde046-20191229064028\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test02d1f941-5607-4757-8df7-fd8c5631ab45-20200103083810\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test039abd7f-360c-42a1-ad5d-77527c519286-20191002233412\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test04a0f157-c6fb-4595-b6ca-6c82a2338063-20200108101451\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test0737f33e-63e0-4ba9-b04b-b93a1de4e997-20200106083639\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test0a44d7be-63fa-418d-a7b6-89a44dd21894-20200107052935\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test0d01b487-7f79-4d87-b330-5c025068db45-20191004190331\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test0d643748-e6fe-41ad-b4d3-89a289a0cee0-20191003055620\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test0df83c51-5bb9-43f8-8ae9-bc896ea64f78-20200110220221\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test0f02c246-7e65-4010-9367-ca4530c3897e-20191004190223\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test157494ec-e788-43b0-8d26-a17e39ee07cc-20191002011945\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test1661d154-b623-4507-8a56-3a89812c456c-20200111083940\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test17bbd860-f21d-40ab-9026-16e05f2907f0-20200106083451\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test194e2333-13cd-43e3-b0a4-c8cdcf1a3600-20200110211106\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test1bc26b19-b8d8-41f9-a26d-818f277bdf93-20200101113139\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test1c840053-9213-4f2a-8f2e-9bf2297908bd-20200108101424\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test1d7bba72-69f1-43cd-a38c-41ce0b5f4bae-20200109050041\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test1f7a8078-50e7-4a3a-91eb-d178fd4c403b-20191002233353\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test1fef1fdc-57ba-46a8-a879-475ba7d45a7a-20200106083509\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test21332f15-f78d-4d31-afac-79b9dc989432-20191231175840\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test22f10717-6939-4003-a9ce-38effd8b77d6-20191007191355\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test2334e6e3-bb72-4241-a36f-c2429d69bc0b-20200106050834\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test24fa9eb5-1c59-4425-b61c-30fd638c2a45-20191003203802\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test2521a545-ed61-4a15-bed1-aba7ce1d81ee-20200106050804\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test25c6fe61-1282-43c2-867b-b5039219989c-20200105081851\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test27515c8c-6773-4f92-afb0-35691cc6e3b6-20200103083821\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test28012680-48e7-4903-877f-2f29464e63d5-20191229033424\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test29a7a529-d293-4728-9d7f-257ed996e64f-20200108081759\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test2a5f2d2c-b8e3-46c2-850d-a1641c024fe7-20200107084228\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test2ce856af-ab17-48f2-ba3e-bcd9af091061-20200110013246\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test2e012e83-6361-4365-963f-6ced8a08e91c-20200110211254\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test2ecf67b2-fb63-4461-b6a6-7026c4fb1168-20191002214026\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test2ede6564-c7cc-44cb-a1a8-902505c9829d-20191003020742\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test2f4ebc17-e27e-48d9-9cc3-ff933c21884e-20200106092410\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test349ee02c-af9b-4663-a963-823b40eefed8-20200108083612\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test34cf6b13-b78e-478b-b596-8b661629371d-20191007195455\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test36cc5b60-2b23-4a04-bf95-f7865e1141cf-20200110085718\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test3712fca9-5cdd-4609-be69-b02aedc5c55c-20200107084115\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test3772d042-92e2-4bcb-99b7-8a6a119cc088-20191231182808\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test37a6dd64-d44d-465e-85bc-3bc38be90350-20200104083535\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test381074d5-7156-472b-801a-b35f8fef4cc6-20200105050612\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test3877a44d-4c48-40db-80eb-227272d5acd6-20200110103540\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test38ecd28e-7018-4672-840c-3044a5e7a6b5-20200111084208\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test395a0b49-442a-450c-8a1f-65b0aa3bcf47-20200105083839\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test3971b300-edff-44a8-b61b-7f9b7460a8d6-20191003002234\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test3adeec20-7458-4b3d-af26-0b6bc2aae3eb-20200103083751\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test3b20dd96-f3e4-4798-998d-8c433c2449a7-20200108083635\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test3ce2fd4a-8b5a-4c7e-b08d-3e48fc0f45e7-20200104083825\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test3d499ca7-cc8d-41cc-a6dc-ffb1a4ac4942-20200107053004\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test3db7240e-5e42-4d6d-b024-cc9fce3c828b-20200105083520\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test3f6b7341-635f-48d5-a36d-be5dfe3002c4-20200105050937\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test3fc26934-ede2-4482-ad5e-f66f6135d4a6-20191228055558\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test406d077c-6017-4062-bc96-f809147a2331-20200106050748\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test4302336c-e039-4e70-bcb6-9275f6089e4a-20200108144821\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test453a087e-8435-46db-970a-4ee633cc4c4a-20200102083458\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test46b73afa-2259-4aff-81e1-a58bf24b59aa-20191229033459\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test4a3399ee-82ea-46aa-9e3a-5434b588e3b6-20191228013518\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test4eb7a185-527b-4b9f-93a8-7f1cec9d062e-20191231151207\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test520a0915-f9f0-4da4-9fa1-1b74fc1470aa-20200102083505\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test5397960f-023b-4979-9a8b-800d049045a4-20191007195417\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test55a36387-8a3f-4159-9884-29b97539a253-20200109080443\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test5645f186-4ee5-4209-af37-423660e3318c-20191231175947\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test58b4461d-4d2d-4395-b6d2-ab83d4d8c62f-20200111001002\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test5b0bf447-d98d-429d-8334-c032d197c743-20191003203846\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test5bc90367-1ea2-400b-a40c-321081bae3f3-20200108145035\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test5bd0562f-e939-456f-a6ee-c848d1aba616-20200101151641\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test5e4efe90-916c-4c96-802c-1508a5b6da78-20191231151150\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test5f8f0c10-cc3c-45ec-a068-fb1c7edfa0d9-20200101145958\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test60a000b7-286c-4b2b-9137-bbc088736419-20200108144920\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test6192a01b-ba47-4d08-904a-71647a49a112-20191008041625\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test62835538-89c6-4f66-9034-f7a4b176c615-20191007234245\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test651e4ad2-ee4a-462e-a506-b56b1969f5d0-20200110230749\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test691d94e5-c40c-4568-94b0-09b08aea42b1-20200106050808\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test6aa3643c-011a-4180-877f-cad955a8e664-20191007234642\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test6cfb469b-8478-468f-9bb5-691affd32abb-20200107083803\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test6d36b6b2-7956-4e62-91c1-c33792fd4bb1-20200110123203\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test6e28168e-a9c8-4c0a-8b40-60c2a1502d43-20200108052802\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test6eb763ac-7fbe-4e44-bee7-aad035ee2a7d-20200110084429\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test6efec253-f625-46f0-9d74-324f69e963d8-20200107070514\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test70fa7e4c-3122-4ff7-aec6-fe75ab660a01-20200108105900\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test710a5fbf-06c7-46ac-b96d-a29d2586422f-20200108083639\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test71d72489-67c6-45e2-b1e6-a19546efc823-20200105112903\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test721fccf1-2b3e-44b6-908f-51b910e88b09-20200111104931\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test742d0189-9e41-4f1b-8ad3-31c05d34903b-20200111103247\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test7836a97c-f56e-48d0-8b5d-61e79aeb3226-20200111071656\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test78666b2e-25c8-4a48-931a-3131a0317d73-20191002194352\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test79f13508-fcbd-47b9-988f-1c21ef5e7f2e-20191002015429\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test79fb90ce-4691-4212-99a7-6e4069bd5984-20191007234256\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test7a8cf687-6a21-4181-ba98-902fee717bd3-20200104103216\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test7aabf813-6644-483a-b9e0-ba6f8973ba1f-20191002232822\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test7c96c10a-0c8f-4ab0-83fd-1ad66a362e33-20191229033458\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test7e79b6ff-2559-44fe-b3ba-afaa68d63636-20200108112116\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test7ea372f7-ea7e-4b9e-bbad-4f35c1567aa2-20200108052736\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test7fac3d04-98a5-4fc4-904e-9ea3b86eadc2-20200106050751\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test7fe20dd6-9ed9-4126-bb1d-031c01ac4550-20200101114504\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test7ff974d9-c841-4249-b05b-bbf663cb4605-20200106084104\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test815bd4d5-fc24-4a47-be20-063c4809902c-20200109050508\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test817654d0-2109-4d95-9284-8c8a9d960d08-20200108053758\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test821ca3b6-dd05-4e80-b3d8-74ba03b2609b-20191231151151\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test8285dc3e-637d-4d46-9695-adc39cbe7d2f-20200108144457\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test828aae03-9239-4938-a303-c23c42311878-20200102083419\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test84afd814-5098-49ab-af99-e50350b5898b-20200110211134\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test85b08563-b15f-4202-a0bc-f2bc2df2c71a-20200107053335\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test88aac268-c087-4481-b78e-99b920784a33-20200101084853\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test88dbd442-a8cc-4874-81a0-d3192c61df62-20191001224544\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test894dfb75-a00f-4f0c-894c-cae1c9846ad3-20200105051803\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test8d09bf4d-ee63-4ab1-a986-a4b802418403-20200111051447\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test8d4d652b-4f05-4e99-93dd-78b9a36b5c78-20191003203755\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test8de64739-43d8-4f84-af65-fdb3d0885288-20200108053543\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test8e324c65-a51d-4eeb-9ec8-d5f8662dc041-20191228165107\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test8e564580-8e53-4300-85f1-bf7f31dd37ff-20200107013348\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test8f458ca7-8898-4d58-b93d-bfb0c3da028c-20200109050310\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test901cd6ca-5565-4552-a3de-d204d01935c0-20200108083706\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test907b39e5-4008-4b55-93a0-18e9697b9cf3-20200108053817\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test90c2be7c-d7ec-4abf-9fad-fef90fc3ef4d-20191004022234\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test922db678-6ee8-43d5-86ff-6a86e132d332-20200107085231\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test93b88aec-5277-4b1b-910c-7008e972ce91-20200107013304\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test95a9104b-6cba-42d8-82ff-cc37e5ac44db-20200108081723\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test96da1605-19e0-46eb-9ce0-53e840f5e2cb-20200101111729\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test996066b2-7d29-400f-929b-e343a21046f7-20191231151212\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test99663fff-ed21-4a91-9687-1a6da2abb033-20200106084508\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Test9eb5efa5-c3c1-4c13-80a6-11f5eba67372-20200108144852\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testa3791896-b1fc-491e-ba0d-aefcd8d9e52a-20200105083503\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testa37ff709-a078-45a0-8187-41733df8e101-20200109050003\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testa4c5fe4e-936e-4be1-a612-a331aff54a8c-20200111105055\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testa59bce1d-e32c-423d-a86e-945d4aeb98b4-20200107051821\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testa604c059-8279-4f4d-a354-eec27222a06c-20200111051514\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testa71fefb1-0d9c-4fb3-8d3d-5dcd12d72b77-20200103103221\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testa748013d-c5a6-44f9-88eb-43167207c742-20200111051402\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testaab67022-4f2b-420d-a06a-2c4045110cdf-20191229033144\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testacab9541-280f-4491-9f49-ac57653f0a07-20200105083839\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testad298437-0349-4cc7-88a9-d8aabcba9df1-20191002233431\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testadd68286-f9e0-4ab1-a526-d8f3cf0f054e-20200105084128\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testade4c52b-18f5-4b67-8e93-945358ce4f7d-20191007234259\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testae421c1d-0211-4ef2-b372-564ce8ad484a-20200110104035\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testafbbd8bf-aec5-48bf-8fea-73fa15ccc315-20191001224727\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testb15148bf-78d2-42d4-ad08-b3ad8fb4b122-20200101084759\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testb4237708-3688-40ea-85a2-275c05f4d100-20191228083519\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testb799a18f-be45-4c5c-8438-163ac2e1f1e7-20191004190529\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testb7cee88a-e5ac-4af4-99c8-7247020b00c3-20200105051201\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testb7df0d9a-27c0-4ca5-b692-08dd90387b98-20200111083443\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testbbf6bf32-4bd0-4381-b8f7-2658f585df4d-20191003203846\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testbeea1376-166a-4b1a-8923-c907cc9737d9-20200107013336\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testbf9154e9-6166-48c2-86fe-1f331be606d7-20200107051823\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testc0d7c3c5-23b8-489c-a5e0-ae87c681b696-20200101083539\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testc193f31a-5186-4e93-84f6-0e4ab87b73c1-20200107052937\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testc1c7e8dc-fa8c-47d9-8305-de6d1451b939-20200101085248\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testc1d0c917-e2ae-430c-a2ca-383fb0fda046-20191007235839\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testc23a3fbb-6e95-4c0d-94fc-c8ab14dddf1c-20191231151117\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testc2697630-6247-411a-94b3-c2974ad8cbee-20191007195417\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testc466b80f-670f-4383-89b8-44e0d509fa20-20191002000516\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testc5c8d9bd-75fa-4db3-9f34-5d7b7098584c-20191003203851\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testc8b6d14b-a5db-48e0-bfad-a2818d432bea-20200104083443\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testc933efa8-c553-4b93-884f-b7221d9ca789-20191228083750\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testcbe8ab80-46ef-49b1-a7bb-4e3d6e50e49f-20200104050811\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testccc0b5e6-9b0d-451a-8ac4-6f4af293b913-20200106092645\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testcec64786-04b1-487c-80ec-050da646fb1c-20191005123412\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testd104a52f-eba2-401d-8e7f-a841c90f7712-20191228083553\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testd724cea4-0d3c-4539-b2ff-be08fb23a67e-20200107083714\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testd8e60bac-27ff-4fba-90b8-732c9c5ff91c-20191228083751\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testd99db4a5-7683-4584-89ad-fefd711de284-20191004190210\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testd9b4309a-67bc-4cd8-ac47-094cb20ca6aa-20200101090202\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testda3320e0-28f2-4146-a002-e06296362711-20191004190115\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testda714121-3240-4253-90c3-48c43f115c90-20200102083419\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testdb357558-60b4-4ee3-9ec3-ba22c5d827fb-20191004020617\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testdc7230e9-df6d-4edd-a57c-ef7e0432c463-20191002011345\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testdccb59de-436f-4935-bed6-2e677dcaf36a-20200109111802\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testde985b23-9333-4f6e-a5e8-82025a38b2af-20200102083510\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Teste271da3e-cbcb-4ee7-8770-f297f414451f-20191003015540\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Teste4070edd-aec0-455d-8a79-aecdb7170b6d-20191007234642\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Teste42f351a-4da0-4f0d-93e9-ef1d98e06659-20200108083633\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Teste66ca23c-f4bf-4eb3-8418-139364d19e7d-20200107062643\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Teste78b1ab2-1380-48ab-9923-0276cdb7198b-20191001224742\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Teste8607e14-b4f8-472a-bd5b-893b8d9612e6-20200112045941\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Teste980b80e-3add-42c0-bc98-a84020b2d128-20200108101640\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Tested79dba9-2d38-4ea9-a01c-56e94b30ca7a-20191007195447\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testee9dcf5f-f7c4-4192-a8f4-28e9bc7d0f7c-20191001225005\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testefbb340a-b68b-4200-872b-d05e7d29f92d-20191007195432\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testf1fc0559-6740-48dd-9501-2b933c731d52-20200103083458\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testf41dfc97-bb51-4fba-86ca-a6f2695c415a-20200107050834\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testf5784447-83ed-4c00-8764-ea0f932aafa2-20200106085748\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testf6128ef6-c13c-420e-8088-0710888ce88b-20200109050003\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testf863ab2c-ada9-4646-84c7-1f83a82375d7-20191229033226\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testfac552a7-418f-4baa-8f51-d199ceff5c68-20200103050817\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testfb7be054-5c15-494f-822c-b64f9a36e2f3-20200105051753\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Extensions.Testfc5c7585-6c9a-4aa4-a7c4-1223a94e00c7-20200104083552\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.FileServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.FileServer.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Geneva\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Geneva\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.KeyVault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.KeyVault\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.KeyVault.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.KeyVault.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Monitor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Monitor\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Monitor.Agent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Monitor.Agent\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Monitor.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Monitor.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Monitor.VirtualMachines\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Monitor.VirtualMachines\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Monitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Monitor.WorkloadInsightsTest.newnamespace\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Monitor.Workloads\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Monitor.Workloads\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Monitoring.DependencyAgent\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Monitoring.DependencyAgent.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Monitoring.DependencyAgent.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.NetworkWatcher.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.OpenSSH\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.OpenSSH\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Performance.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Performance.Diagnostics.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Performance.Diagnostics.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.RecoveryServices.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery2\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.AntimalwareSignature\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.AntimalwareSignature.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.Dsms\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.Dsms.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.Dsms.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.Monitoring\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.Monitoring.Testing\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.TestWindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.TestWindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.WindowsAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.WindowsAttestation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Security.WinTestAttestation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Security.WinTestAttestation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.ServiceFabric.MC\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.ServiceFabric.MC.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.ServiceFabric.MC.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Stage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.SiteRecovery.Stage\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery2.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.SiteRecovery2.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test2\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test3\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test4\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.INT\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Linux.Test5.TEST\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest2\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest3\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Linux.VincentTest4\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.TestTest\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.INT\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.INT\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Azure.WorkloadInsights.TestTest.TEST\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Azure.WorkloadInsights.TestTest.TEST\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureMonitor.WorkloadInsights\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Canary\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Canary\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Corp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Linux.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureMonitor.WorkloadInsights.LinuxTest\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Meya0206\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Meya0206\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureMonitor.WorkloadInsights.MeyaCorp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureMonitor.WorkloadInsights.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureMonitor.WorkloadInsights.Testing\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.CloudBackup.Workload.Extension.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.CPlat.Core\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.CPlat.Core\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.CPlat.Core.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.CPlat.Core.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.EnterpriseCloud.Monitoring.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.GuestConfig.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.GuestConfig.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.GuestConfiguration\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.GuestConfiguration\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.GuestConfiguration.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.GuestConfiguration.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.GuestConfiguration.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.GuestConfiguration.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.HpcCompute.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.HpcCompute.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Interceptor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Interceptor\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.ManagedServices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.ManagedServices\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.ManagedServices.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.ManagedServices.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.MonitoringAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.MonitoringAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.OSTCExtensions.Testing\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.OSTCExtensions.Testing\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Powershell.Test01\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Powershell.Test01\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.SecurityManagement.Kevlar\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.SecurityManagement.Kevlar\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.SoftwareUpdateManagement.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.SoftwareUpdateManagement.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.SqlServer.Management.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.SqlServer.Management.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.TestSqlServer.Edp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.TestSqlServer.Edp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.DevTest.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.VisualStudio.WindowsAzure.DevTest.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.VisualStudio.WindowsAzure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.VisualStudio.WindowsAzure.Test.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Windows.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.WindowsAdminCenter\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.WindowsAdminCenter\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.WindowsAdminCenter.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.WindowsAdminCenter.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.WindowsAzure.Compute.test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Microsoft.WVD\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.WVD\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftTestLinuxPPS\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftTestLinuxPPS\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftWindowsDesktop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftWindowsDesktop\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microsoft_iot_edge\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microsoft_iot_edge\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microsoft_javaeeonazure_test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microsoft_javaeeonazure_test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"microstrategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/microstrategy\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"midasolutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/midasolutions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"midfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/midfin\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mindcti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mindcti\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"miri-infotech-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/miri-infotech-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"modern-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/modern-systems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"monitorcomputersystemsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/monitorcomputersystemsltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"moogsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/moogsoft\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mriisoftllc1579457820427\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mriisoftllc1579457820427\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"multisoft-ab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/multisoft-ab\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mwg_azure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mwg_azure\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nebbiolo-technologies-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nebbiolo-technologies-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nec-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nec-technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nefelinetworks1591201080882\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nefelinetworks1591201080882\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"neo4j\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/neo4j\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"neowaybusinesssolutions-4956350\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/neowaybusinesssolutions-4956350\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netfoundryinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netfoundryinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netikus-net-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netikus-net-ltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netka\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netka\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netmail\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netmail\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netscout\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netscout\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netspi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netspi\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netsweeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netsweeper\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"networksexchangetechnologyltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/networksexchangetechnologyltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"netx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/netx\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"NewRelic.Infrastructure.Extensions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/NewRelic.Infrastructure.Extensions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nextronic-5290868\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nextronic-5290868\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nice-it-management-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nice-it-management-solutions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"niolabs-5229713\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/niolabs-5229713\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nokiaofamericacorporation1591716055441\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nokiaofamericacorporation1591716055441\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"norcominformationtechnologygmbhcokgaa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/norcominformationtechnologygmbhcokgaa\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"northbridge-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/northbridge-secure\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nozominetworks1582208017986\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nozominetworks1582208017986\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nri\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ntt-data-intellilink-corporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ntt-data-intellilink-corporation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nttdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nttdata\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nuco-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nuco-networks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"numbersbelieve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/numbersbelieve\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"numtrallcpublisher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/numtrallcpublisher\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"nvidia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/nvidia\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"o2mc-real-time-data-platform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/o2mc-real-time-data-platform\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"objectivity-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/objectivity-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"oceanblue-cloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/oceanblue-cloud\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"odysseyconsultantsltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/odysseyconsultantsltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"officeatwork-ag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/officeatwork-ag\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"onapsis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/onapsis\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"oncore_cloud_services-4944214\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/oncore_cloud_services-4944214\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"onexgroup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/onexgroup\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"onspecta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/onspecta\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ontology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ontology\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"onyx-point-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/onyx-point-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"open-connect-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/open-connect-systems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"openshotstudiosllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/openshotstudiosllc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"openvpn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/openvpn\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"option3\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/option3\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"oraylis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/oraylis\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"oraylisbi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/oraylisbi\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"orbs-network\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/orbs-network\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"oriana\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/oriana\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"oroinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/oroinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"osirium-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/osirium-ltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"osnexus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/osnexus\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"pacteratechnologiesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/pacteratechnologiesinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"pasifikciptamandiri\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/pasifikciptamandiri\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"paxata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/paxata\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"peer-software-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/peer-software-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"penta-security-systems-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/penta-security-systems-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"percona\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/percona\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"piolinkinc1582849368309\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/piolinkinc1582849368309\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"pnop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/pnop\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"portsysinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/portsysinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"postgres-pro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/postgres-pro\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"powerbireach\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/powerbireach\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"prestige_informatique-1090178\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/prestige_informatique-1090178\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"primekey\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/primekey\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"primestrategynewyorkinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/primestrategynewyorkinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"pro-vision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/pro-vision\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"processgold\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/processgold\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"procomputerssrl1594239153814\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/procomputerssrl1594239153814\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"profecia\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/profecia\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Profiler.AgentOrchestrationRefactor.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Profiler.AgentOrchestrationRefactor.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Profiler.Master.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Profiler.Master.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"progresssoftwarecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/progresssoftwarecorporation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"protiviti\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/protiviti\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ptc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ptc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"pulse-secure\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/pulse-secure\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Puppet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Puppet\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"purestorageinc1578960262525\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/purestorageinc1578960262525\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"qore-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/qore-technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"qs-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/qs-solutions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Qualys.LinuxAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Qualys.LinuxAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Qualys.WindowsAgent.GrayLabel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Qualys.WindowsAgent.GrayLabel\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"quest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/quest\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"racknap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/racknap\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"radiant-logic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/radiant-logic\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"raincode\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/raincode\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Rapid7.InsightPlatform\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Rapid7.InsightPlatform\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rapidminer\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rapidminer\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"raynetgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/raynetgmbh\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"reblaze\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/reblaze\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"refinitiv\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/refinitiv\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"refinitiv-4807503\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/refinitiv-4807503\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"resco\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/resco\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"resemblesystems1582780358300\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/resemblesystems1582780358300\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"responder-corp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/responder-corp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rhcsolutions1586957910818\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rhcsolutions1586957910818\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ribboncommunications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ribboncommunications\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ringsoftwareresearchanddevelopmentinc1578946072257\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ringsoftwareresearchanddevelopmentinc1578946072257\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rocketml\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rocketml\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rohdeschwarzcybersecuritygmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rohdeschwarzcybersecuritygmbh\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rohdeschwarzcybersecuritysas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rohdeschwarzcybersecuritysas\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"roktech\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/roktech\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rsa-security-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rsa-security-llc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rsk-labs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rsk-labs\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rstudio-5237862\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rstudio-5237862\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rtts\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rtts\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"rubrik-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/rubrik-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"s2ix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/s2ix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"saasame-limited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/saasame-limited\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"safesoftwareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/safesoftwareinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"safeticatechnologiessro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/safeticatechnologiessro\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"safetica_technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/safetica_technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"safetoopen1585013318137\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/safetoopen1585013318137\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"saltsecurity1583264186232\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/saltsecurity1583264186232\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"saltsecurity1583264669848\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/saltsecurity1583264669848\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"samsungsds_sdbe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/samsungsds_sdbe\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"scaidata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/scaidata\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"scality\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/scality\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"schrockeninc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/schrockeninc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sci\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sci\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"scientiamobile\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/scientiamobile\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"seaqserviciossas1579029207572\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/seaqserviciossas1579029207572\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"secureworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/secureworks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"securosis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/securosis\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"semarchy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/semarchy\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"semperis\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/semperis\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"SentinelOne.LinuxExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/SentinelOne.LinuxExtension\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"SentinelOne.WindowsExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/SentinelOne.WindowsExtension\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sentriumsl\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sentriumsl\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sepiosystems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sepiosystems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"seppmailag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/seppmailag\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"service-control-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/service-control-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"shadow-soft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/shadow-soft\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"signal-sciences\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/signal-sciences\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"simontelephonics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/simontelephonics\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"simplifierag\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/simplifierag\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"simpligov\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/simpligov\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"siportalinc1581539156321\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/siportalinc1581539156321\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sisenseltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sisenseltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sktelecom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sktelecom\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"skyarc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/skyarc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"skylarkcloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/skylarkcloud\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"smartbearsoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/smartbearsoftware\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"smartmessage-autoflow\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/smartmessage-autoflow\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"snapt-adc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/snapt-adc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"snips\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/snips\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"softwebsolutions-4518310\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/softwebsolutions-4518310\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"solar-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/solar-security\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sonicwall-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sonicwall-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"south-river-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/south-river-technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"southrivertech1586314123192\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/southrivertech1586314123192\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sparklinglogic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sparklinglogic\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"spektra\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/spektra\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sproutenetworks1593456311717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sproutenetworks1593456311717\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sqlstream\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sqlstream\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"squaredup\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/squaredup\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"src-solution\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/src-solution\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Stackify.LinuxAgent.Extension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Stackify.LinuxAgent.Extension\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"startekfingerprintmatch\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/startekfingerprintmatch\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"StatusMonitor2.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/StatusMonitor2.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"stonebondtechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/stonebondtechnologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"storage_made_easy\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/storage_made_easy\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"stratumn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/stratumn\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"su\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/su\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"subscription.test.krsh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/subscription.test.krsh\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sunatogmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sunatogmbh\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"swoopanalytics\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/swoopanalytics\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"sycompatechnologycompanyinc1588192103892\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/sycompatechnologycompanyinc1588192103892\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.CloudWorkloadProtection\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.CloudWorkloadProtection\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.CloudWorkloadProtection.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.CloudWorkloadProtection.TestOnStage\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.CloudWorkloadProtection.TestOnStage\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"symanteccorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/symanteccorporation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"synack-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/synack-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"synechron-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/synechron-technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"synergixinc1585256339250\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/synergixinc1585256339250\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"synnexcorp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/synnexcorp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"talari-networks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/talari-networks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"talena-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/talena-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"talend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/talend\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tamrinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tamrinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tata_communications\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tata_communications\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tavanttechnologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tavanttechnologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"te-systems\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/te-systems\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"techlatest\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/techlatest\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tecknolab\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tecknolab\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"teloscorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/teloscorporation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tempered-networks-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tempered-networks-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"teramindinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/teramindinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Test.SqlServer.Managability\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Test.SqlServer.Managability\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Test.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Test.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Test.SqlServer.Management.corext\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Test.SqlServer.Management.corext\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"testpro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/testpro\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"test_test_pmc2pc1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/test_test_pmc2pc1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"thedatavaluefactoryltd1589348815922\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/thedatavaluefactoryltd1589348815922\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"thefreebsdfoundation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/thefreebsdfoundation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"things-board\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/things-board\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"thingscareinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/thingscareinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"thinprintgmbh\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/thinprintgmbh\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"thorntechnologiesllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/thorntechnologiesllc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"thoughtspot-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/thoughtspot-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"threatintelligenceptyltd1586824172898\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/threatintelligenceptyltd1586824172898\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tidal-migrations\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tidal-migrations\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tidalmediainc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tidalmediainc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tiger-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tiger-technology\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tigergraph\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tigergraph\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"timextender\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/timextender\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tmaxsoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tmaxsoft\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"topicus\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/topicus\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"totemo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/totemo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"transientxinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/transientxinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tresorit\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tresorit\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"trifacta\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/trifacta\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tripwire-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tripwire-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"truestack\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/truestack\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"tunnelbiz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/tunnelbiz\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"uipath-5054924\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/uipath-5054924\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"unifi-software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/unifi-software\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"unnisoft\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/unnisoft\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"unravel-data\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/unravel-data\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"unscramblsingaporepteltd-4999260\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/unscramblsingaporepteltd-4999260\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"untangle\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/untangle\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"valtix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/valtix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"varmournetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/varmournetworks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vatacommunicationsinc1581644208717\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vatacommunicationsinc1581644208717\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vaultive-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vaultive-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vectraaiinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vectraaiinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"velocitydb-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/velocitydb-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"velocloud\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/velocloud\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vemn\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vemn\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"versanetworks\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/versanetworks\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"versasec\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/versasec\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vigyanlabs-innovations-pvt-ltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vigyanlabs-innovations-pvt-ltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vigyanlabsinc1581413676614\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vigyanlabsinc1581413676614\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"visualsoft-center\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/visualsoft-center\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vmware-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vmware-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vnomicinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vnomicinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"voiceelements\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/voiceelements\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"volterraedgeservices\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/volterraedgeservices\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vu-llc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vu-llc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"vyulabsinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/vyulabsinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"wallarm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/wallarm\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"wanos\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/wanos\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"wanpath-dba-myworkdrive\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/wanpath-dba-myworkdrive\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"watchguard-technologies\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/watchguard-technologies\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"webaloinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/webaloinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"websoft9inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/websoft9inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"wedoitllc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/wedoitllc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"westernoceansoftwaresprivatelimited\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/westernoceansoftwaresprivatelimited\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"wherescapesoftware\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/wherescapesoftware\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"winmagic_securedoc_cloudvm\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/winmagic_securedoc_cloudvm\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"witfooinc1590167223060\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/witfooinc1590167223060\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"world-programming\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/world-programming\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"worxogo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/worxogo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"xcontentptyltd-1329748\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/xcontentptyltd-1329748\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"xendata-inc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/xendata-inc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"xilinx\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/xilinx\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"xoriantsolutionspvtltd\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/xoriantsolutionspvtltd\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"xyzrd-group-ou\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/xyzrd-group-ou\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"yokogawarentalleasecorporation\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/yokogawarentalleasecorporation\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"z1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/z1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"z4it-aps\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/z4it-aps\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"zabbix\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/zabbix\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"zettalane_systems-5254599\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/zettalane_systems-5254599\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"zevenet\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/zevenet\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"zilliz\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/zilliz\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/zscaler\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/centraluseuap/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "660490da-a3d7-4855-98c8-315971475a6d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b0bd8a39-4f4b-4677-9b7d-bc3fb4622374_132321708009954277" + ], + "x-ms-request-id": [ + "59ca94a6-6f91-403c-baef-59d1dfb9824f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "b576f00d-4fff-46b3-aa09-a37ae3daf330" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113200Z:b576f00d-4fff-46b3-aa09-a37ae3daf330" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:32:00 GMT" + ], + "Content-Length": [ + "1089" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"JsonADDomainExtension\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/JsonADDomainExtension\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/centraluseuap/publishers/Microsoft.Compute/artifacttypes/vmextension/types/BGInfo/versions?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL2FydGlmYWN0dHlwZXMvdm1leHRlbnNpb24vdHlwZXMvQkdJbmZvL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92a6fc13-bf2f-45ce-9c24-379b36c0b168" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "b0bd8a39-4f4b-4677-9b7d-bc3fb4622374_132321708009954277" + ], + "x-ms-request-id": [ + "242e6ac8-004c-4a10-93f4-57dfd99f725e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "b6d707e4-e60e-4c72-b33a-aeb18f20bfc5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113200Z:b6d707e4-e60e-4c72-b33a-aeb18f20bfc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:32:00 GMT" + ], + "Content-Length": [ + "1326" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"1.0.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.0.1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/1.2.2\"\r\n },\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"name\": \"2.1\",\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/Providers/Microsoft.Compute/Locations/CentralUSEUAP/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo/Versions/2.1\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483/extensions/BGInfo?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvUFNUZXN0Vk01NDU0ODMvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n \"autoUpgradeMinorVersion\": true\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b655d483-4a43-44b3-bba9-f3afff1040f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "193" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/3eff35f8-55d4-45a4-8b3c-2bf5346ab736?api-version=2020-06-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3eff35f8-55d4-45a4-8b3c-2bf5346ab736" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "36272a51-7687-412a-9f69-664c2d04c826" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113208Z:36272a51-7687-412a-9f69-664c2d04c826" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:32:08 GMT" + ], + "Content-Length": [ + "479" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/3eff35f8-55d4-45a4-8b3c-2bf5346ab736?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zLzNlZmYzNWY4LTU1ZDQtNDVhNC04YjNjLTJiZjUzNDZhYjczNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29983" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "70a22375-6496-49cf-8ebf-82bde3494b46" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "03ebfbd7-3390-4b82-bccb-6ff3abe82159" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113238Z:03ebfbd7-3390-4b82-bccb-6ff3abe82159" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:32:38 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T17:02:06.0895885+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3eff35f8-55d4-45a4-8b3c-2bf5346ab736\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/3eff35f8-55d4-45a4-8b3c-2bf5346ab736?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zLzNlZmYzNWY4LTU1ZDQtNDVhNC04YjNjLTJiZjUzNDZhYjczNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c88eeae6-7ee2-4ee8-aebb-bb550cde76c5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "e627f801-47d2-4744-9c53-a53ff4600879" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113309Z:e627f801-47d2-4744-9c53-a53ff4600879" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:33:08 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T17:02:06.0895885+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3eff35f8-55d4-45a4-8b3c-2bf5346ab736\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/3eff35f8-55d4-45a4-8b3c-2bf5346ab736?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zLzNlZmYzNWY4LTU1ZDQtNDVhNC04YjNjLTJiZjUzNDZhYjczNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29981" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b5d870b8-5e57-4739-9634-9a8c04159104" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "daa1d1c0-9b67-46fb-a097-4642cd6bb3c2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113339Z:daa1d1c0-9b67-46fb-a097-4642cd6bb3c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:33:38 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T17:02:06.0895885+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3eff35f8-55d4-45a4-8b3c-2bf5346ab736\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/3eff35f8-55d4-45a4-8b3c-2bf5346ab736?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zLzNlZmYzNWY4LTU1ZDQtNDVhNC04YjNjLTJiZjUzNDZhYjczNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29979" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d9459b48-45fb-495a-88d3-8c4bc74bf6e8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "f4f72493-cf9a-42bf-8516-a5784464b109" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113409Z:f4f72493-cf9a-42bf-8516-a5784464b109" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:34:09 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T17:02:06.0895885+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3eff35f8-55d4-45a4-8b3c-2bf5346ab736\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/3eff35f8-55d4-45a4-8b3c-2bf5346ab736?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zLzNlZmYzNWY4LTU1ZDQtNDVhNC04YjNjLTJiZjUzNDZhYjczNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29978" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f9930bff-1dff-46aa-88f8-cc04ce572e8d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "bcce9b72-60f3-4b4d-a6d0-4a645f9bb146" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113440Z:bcce9b72-60f3-4b4d-a6d0-4a645f9bb146" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:34:39 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T17:02:06.0895885+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3eff35f8-55d4-45a4-8b3c-2bf5346ab736\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/3eff35f8-55d4-45a4-8b3c-2bf5346ab736?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zLzNlZmYzNWY4LTU1ZDQtNDVhNC04YjNjLTJiZjUzNDZhYjczNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29977" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cdd8bd93-57d4-4e43-a2fb-57017e3ba1f4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "e85ed5af-2f0a-481d-989f-ce08e1893733" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113510Z:e85ed5af-2f0a-481d-989f-ce08e1893733" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:35:09 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T17:02:06.0895885+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3eff35f8-55d4-45a4-8b3c-2bf5346ab736\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/providers/Microsoft.Compute/locations/CentralUSEUAP/operations/3eff35f8-55d4-45a4-8b3c-2bf5346ab736?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvQ2VudHJhbFVTRVVBUC9vcGVyYXRpb25zLzNlZmYzNWY4LTU1ZDQtNDVhNC04YjNjLTJiZjUzNDZhYjczNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "33b5065c-0128-4786-9bbc-77a4e812a1f9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "ddef24b8-f6c6-46c4-b756-8a8f5a829f5d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113540Z:ddef24b8-f6c6-46c4-b756-8a8f5a829f5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:35:39 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-08-26T17:02:06.0895885+05:30\",\r\n \"endTime\": \"2020-08-26T17:05:28.6371873+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3eff35f8-55d4-45a4-8b3c-2bf5346ab736\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483/extensions/BGInfo?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL2hpYWdhU3JjUkcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvUFNUZXN0Vk01NDU0ODMvZXh0ZW5zaW9ucy9CR0luZm8/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31973" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1f61c2a6-f1e2-4cc6-99ba-8c1ce3b0f5b1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "77dae6b0-55d8-4419-8570-6c9ae78fbb1f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113541Z:77dae6b0-55d8-4419-8570-6c9ae78fbb1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:35:40 GMT" + ], + "Content-Length": [ + "480" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483/extensions/BGInfo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a091eed-6aae-468b-9aa4-9cd5fd1ee27f-2020-08-26 11:35:41Z-P" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5246f422-50ea-49d9-b62f-00f1c7f476fe" + ], + "x-ms-correlation-request-id": [ + "5246f422-50ea-49d9-b62f-00f1c7f476fe" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113542Z:5246f422-50ea-49d9-b62f-00f1c7f476fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:35:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "240" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f' under resource group 'PSTestRG54548c5f7' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4fce855-c3a0-49e4-92e5-f62c01cdb366-2020-08-26 11:35:42Z-P" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "46f9c4bb-a998-45e2-9d15-03b2eeee2f5a" + ], + "x-ms-client-request-id": [ + "b4fce855-c3a0-49e4-92e5-f62c01cdb366-2020-08-26 11:35:42Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "204" + ], + "x-ms-correlation-request-id": [ + "46f9c4bb-a998-45e2-9d15-03b2eeee2f5a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113555Z:46f9c4bb-a998-45e2-9d15-03b2eeee2f5a" + ], + "Date": [ + "Wed, 26 Aug 2020 11:35:55 GMT" + ], + "Content-Length": [ + "467" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"PSTestRSV54548c5f\",\r\n \"etag\": \"W/\\\"datetime'2020-08-26T11%3A35%3A53.0022191Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "abcd4f0b-e0f9-40e7-9ff3-eadd918a7ef3-2020-08-26 11:35:55Z-P" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e32040f1-02f8-464e-b9d8-031d10d8d120" + ], + "x-ms-correlation-request-id": [ + "e32040f1-02f8-464e-b9d8-031d10d8d120" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113556Z:e32040f1-02f8-464e-b9d8-031d10d8d120" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 26 Aug 2020 11:35:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "240" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f' under resource group 'PSTestRG54548c5f8' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6f5eff4-0c64-4b76-a994-f191bcf52494-2020-08-26 11:35:56Z-P" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "96" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b1a5b516-0d39-471a-9404-a080461a6252" + ], + "x-ms-client-request-id": [ + "c6f5eff4-0c64-4b76-a994-f191bcf52494-2020-08-26 11:35:56Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "203" + ], + "x-ms-correlation-request-id": [ + "b1a5b516-0d39-471a-9404-a080461a6252" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113607Z:b1a5b516-0d39-471a-9404-a080461a6252" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:07 GMT" + ], + "Content-Length": [ + "465" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"name\": \"PSTestRSV54548c5f\",\r\n \"etag\": \"W/\\\"datetime'2020-08-26T11%3A36%3A05.2226801Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM545483'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdQU1Rlc3RWTTU0NTQ4MyclMjBhbmQlMjBiYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlSWFhc1ZNJyUyMGFuZCUyMHN0YXR1cyUyMGVxJTIwJ1JlZ2lzdGVyZWQnJmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b890a581-5782-4fdc-8263-5834f46af424" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5e0042f8-e8cc-40cb-8d99-48e5216313e0" + ], + "x-ms-client-request-id": [ + "b890a581-5782-4fdc-8263-5834f46af424", + "b890a581-5782-4fdc-8263-5834f46af424" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "5e0042f8-e8cc-40cb-8d99-48e5216313e0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113613Z:5e0042f8-e8cc-40cb-8d99-48e5216313e0" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:13 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupProtectionContainers?$filter=friendlyName%20eq%20'PSTestVM545483'%20and%20backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1mcmllbmRseU5hbWUlMjBlcSUyMCdQU1Rlc3RWTTU0NTQ4MyclMjBhbmQlMjBiYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlSWFhc1ZNJyUyMGFuZCUyMHN0YXR1cyUyMGVxJTIwJ1JlZ2lzdGVyZWQnJmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7bb1928a-b7ef-4f83-9d53-52aa6484c92e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1f8fa9d7-099a-4b3e-97ae-70ccb77b47ef" + ], + "x-ms-client-request-id": [ + "7bb1928a-b7ef-4f83-9d53-52aa6484c92e", + "7bb1928a-b7ef-4f83-9d53-52aa6484c92e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-correlation-request-id": [ + "1f8fa9d7-099a-4b3e-97ae-70ccb77b47ef" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113648Z:1f8fa9d7-099a-4b3e-97ae-70ccb77b47ef" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:48 GMT" + ], + "Content-Length": [ + "895" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"name\": \"IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"hiagaSrcRG2\",\r\n \"friendlyName\": \"PSTestVM545483\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"Microsoft.Compute/virtualMachines\",\r\n \"protectableObjectType\": \"Microsoft.Compute/virtualMachines\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupPolicies/DefaultPolicy?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwUG9saWNpZXMvRGVmYXVsdFBvbGljeT9hcGktdmVyc2lvbj0yMDE5LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8657b94f-cbab-4c30-96cc-43a841c1227b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c4df8168-fb42-4e52-89ca-91ae326b8c60" + ], + "x-ms-client-request-id": [ + "8657b94f-cbab-4c30-96cc-43a841c1227b", + "8657b94f-cbab-4c30-96cc-43a841c1227b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "c4df8168-fb42-4e52-89ca-91ae326b8c60" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113613Z:c4df8168-fb42-4e52-89ca-91ae326b8c60" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:13 GMT" + ], + "Content-Length": [ + "729" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupPolicies/DefaultPolicy\",\r\n \"name\": \"DefaultPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-08-26T21:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-08-26T21:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureIaasVM'&api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d048eac9-38dc-437d-bb90-ff05c52ac934" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b03d2514-e630-4500-8351-c6d90547ffb8" + ], + "x-ms-client-request-id": [ + "d048eac9-38dc-437d-bb90-ff05c52ac934", + "d048eac9-38dc-437d-bb90-ff05c52ac934" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "b03d2514-e630-4500-8351-c6d90547ffb8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113615Z:b03d2514-e630-4500-8351-c6d90547ffb8" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:14 GMT" + ], + "Content-Length": [ + "881" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483/protectableItems/vm;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"name\": \"iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"resourceGroup\": \"hiagaSrcRG2\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"protectableItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"friendlyName\": \"PSTestVM545483\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagasrcrg2%3Bpstestvm545483/protectedItems/vm%3Biaasvmcontainerv2%3Bhiagasrcrg2%3Bpstestvm545483?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9JYWFzVk1Db250YWluZXIlM0JpYWFzdm1jb250YWluZXJ2MiUzQmhpYWdhc3JjcmcyJTNCcHN0ZXN0dm01NDU0ODMvcHJvdGVjdGVkSXRlbXMvdm0lM0JpYWFzdm1jb250YWluZXJ2MiUzQmhpYWdhc3JjcmcyJTNCcHN0ZXN0dm01NDU0ODM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"policyId\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupPolicies/DefaultPolicy\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3e17182-4fbf-4a32-ad15-60cd7eed5e7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "452" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483/protectedItems/vm;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483/operationResults/74053829-d563-42af-9b6d-9455df867a0a?api-version=2019-06-15" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483/protectedItems/vm;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483/operationsStatus/74053829-d563-42af-9b6d-9455df867a0a?api-version=2019-06-15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1511dc8a-7841-40dd-b77b-99919c974f5b" + ], + "x-ms-client-request-id": [ + "f3e17182-4fbf-4a32-ad15-60cd7eed5e7b", + "f3e17182-4fbf-4a32-ad15-60cd7eed5e7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "1511dc8a-7841-40dd-b77b-99919c974f5b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113615Z:1511dc8a-7841-40dd-b77b-99919c974f5b" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b91214a1-0edf-41c5-a525-5ed9db8f3680" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "abad7c9e-d936-4d33-963b-dc5f85c1dad0" + ], + "x-ms-client-request-id": [ + "b91214a1-0edf-41c5-a525-5ed9db8f3680", + "b91214a1-0edf-41c5-a525-5ed9db8f3680" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "abad7c9e-d936-4d33-963b-dc5f85c1dad0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113616Z:abad7c9e-d936-4d33-963b-dc5f85c1dad0" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e996ceaa-08a5-4f75-8518-25a28aea1041" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4d4fe2bc-8819-46b4-ad44-c826097f6775" + ], + "x-ms-client-request-id": [ + "e996ceaa-08a5-4f75-8518-25a28aea1041", + "e996ceaa-08a5-4f75-8518-25a28aea1041" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "4d4fe2bc-8819-46b4-ad44-c826097f6775" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113616Z:4d4fe2bc-8819-46b4-ad44-c826097f6775" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:16 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27008fc1-6059-4bb9-a081-e9ca595157a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "18bc8fcf-757b-4378-8b55-99b49db6e6a8" + ], + "x-ms-client-request-id": [ + "27008fc1-6059-4bb9-a081-e9ca595157a3", + "27008fc1-6059-4bb9-a081-e9ca595157a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "18bc8fcf-757b-4378-8b55-99b49db6e6a8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113617Z:18bc8fcf-757b-4378-8b55-99b49db6e6a8" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66e3e5b3-9c5b-4d0a-8be4-5ed9f7b4f8f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8e0fd367-4f5e-49bf-9133-ed68f27a149e" + ], + "x-ms-client-request-id": [ + "66e3e5b3-9c5b-4d0a-8be4-5ed9f7b4f8f6", + "66e3e5b3-9c5b-4d0a-8be4-5ed9f7b4f8f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "8e0fd367-4f5e-49bf-9133-ed68f27a149e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113617Z:8e0fd367-4f5e-49bf-9133-ed68f27a149e" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00821aef-bc3b-4c34-9f26-408152997c17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d43ef771-170a-4378-bb89-5638badf1f68" + ], + "x-ms-client-request-id": [ + "00821aef-bc3b-4c34-9f26-408152997c17", + "00821aef-bc3b-4c34-9f26-408152997c17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "d43ef771-170a-4378-bb89-5638badf1f68" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113618Z:d43ef771-170a-4378-bb89-5638badf1f68" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:17 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5789c00f-e351-4fcd-a858-a98d85d0997c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4e21c0c1-0901-46fe-bcde-fd5ae04ef3ed" + ], + "x-ms-client-request-id": [ + "5789c00f-e351-4fcd-a858-a98d85d0997c", + "5789c00f-e351-4fcd-a858-a98d85d0997c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "4e21c0c1-0901-46fe-bcde-fd5ae04ef3ed" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113618Z:4e21c0c1-0901-46fe-bcde-fd5ae04ef3ed" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:18 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80916c48-daa7-44ea-a074-a4e7504c80f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4a75ff31-1e39-4f39-9250-1ee5b6627179" + ], + "x-ms-client-request-id": [ + "80916c48-daa7-44ea-a074-a4e7504c80f1", + "80916c48-daa7-44ea-a074-a4e7504c80f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "4a75ff31-1e39-4f39-9250-1ee5b6627179" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113618Z:4a75ff31-1e39-4f39-9250-1ee5b6627179" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:18 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74f10f00-6a2b-4d75-b76d-8ca40f861a6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b61359f5-5bca-4647-b6e7-f5dba6d79616" + ], + "x-ms-client-request-id": [ + "74f10f00-6a2b-4d75-b76d-8ca40f861a6c", + "74f10f00-6a2b-4d75-b76d-8ca40f861a6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "b61359f5-5bca-4647-b6e7-f5dba6d79616" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113619Z:b61359f5-5bca-4647-b6e7-f5dba6d79616" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:19 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab633826-6910-42ff-997a-24b287b129e5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "22453cbe-558c-4b02-b1c2-8f0d5eb3e924" + ], + "x-ms-client-request-id": [ + "ab633826-6910-42ff-997a-24b287b129e5", + "ab633826-6910-42ff-997a-24b287b129e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "22453cbe-558c-4b02-b1c2-8f0d5eb3e924" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113619Z:22453cbe-558c-4b02-b1c2-8f0d5eb3e924" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:19 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e09aea5-f7e8-43ab-95d7-688c9cbcfc5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "249920cb-8473-4bea-9f57-70d1364cb312" + ], + "x-ms-client-request-id": [ + "3e09aea5-f7e8-43ab-95d7-688c9cbcfc5d", + "3e09aea5-f7e8-43ab-95d7-688c9cbcfc5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "249920cb-8473-4bea-9f57-70d1364cb312" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113620Z:249920cb-8473-4bea-9f57-70d1364cb312" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2305ee03-4693-4407-b458-92c2ead292c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1b3801ea-3f24-4d11-9095-570c48b50dc9" + ], + "x-ms-client-request-id": [ + "2305ee03-4693-4407-b458-92c2ead292c2", + "2305ee03-4693-4407-b458-92c2ead292c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "1b3801ea-3f24-4d11-9095-570c48b50dc9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113620Z:1b3801ea-3f24-4d11-9095-570c48b50dc9" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc4b2a92-1240-4d09-8687-f9a3a559de92" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "492a54cb-2d37-45ee-9d61-3954fcf4e59c" + ], + "x-ms-client-request-id": [ + "fc4b2a92-1240-4d09-8687-f9a3a559de92", + "fc4b2a92-1240-4d09-8687-f9a3a559de92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "492a54cb-2d37-45ee-9d61-3954fcf4e59c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113621Z:492a54cb-2d37-45ee-9d61-3954fcf4e59c" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:20 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24804a60-46a9-42ad-ab42-a250755407fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "09c0c330-b78b-4fa9-97d3-18e0a41aa615" + ], + "x-ms-client-request-id": [ + "24804a60-46a9-42ad-ab42-a250755407fb", + "24804a60-46a9-42ad-ab42-a250755407fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "09c0c330-b78b-4fa9-97d3-18e0a41aa615" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113621Z:09c0c330-b78b-4fa9-97d3-18e0a41aa615" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:21 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b7df857-15c4-41f6-90f7-f7baea2eded6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a5a3f711-6953-4c2d-94d6-12879d72e71a" + ], + "x-ms-client-request-id": [ + "6b7df857-15c4-41f6-90f7-f7baea2eded6", + "6b7df857-15c4-41f6-90f7-f7baea2eded6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "a5a3f711-6953-4c2d-94d6-12879d72e71a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113621Z:a5a3f711-6953-4c2d-94d6-12879d72e71a" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:21 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4fc62b0-41a3-4ef0-8287-869b2e24a04b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d58e76fb-7dd1-4992-b73a-e9f244ed1d32" + ], + "x-ms-client-request-id": [ + "d4fc62b0-41a3-4ef0-8287-869b2e24a04b", + "d4fc62b0-41a3-4ef0-8287-869b2e24a04b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "d58e76fb-7dd1-4992-b73a-e9f244ed1d32" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113622Z:d58e76fb-7dd1-4992-b73a-e9f244ed1d32" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b78f726a-9995-43c3-b5b3-583d9497aa99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a86dc311-b563-4548-a686-ae7184627a2c" + ], + "x-ms-client-request-id": [ + "b78f726a-9995-43c3-b5b3-583d9497aa99", + "b78f726a-9995-43c3-b5b3-583d9497aa99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "a86dc311-b563-4548-a686-ae7184627a2c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113622Z:a86dc311-b563-4548-a686-ae7184627a2c" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:22 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ddd8498c-f4fe-4d81-80bd-4ebd32d4d85e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8ff2eea9-44b2-41f0-9752-d3971a5286a3" + ], + "x-ms-client-request-id": [ + "ddd8498c-f4fe-4d81-80bd-4ebd32d4d85e", + "ddd8498c-f4fe-4d81-80bd-4ebd32d4d85e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "8ff2eea9-44b2-41f0-9752-d3971a5286a3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113623Z:8ff2eea9-44b2-41f0-9752-d3971a5286a3" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8a029b1-4a94-4752-9fba-6fd3f5cc73a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5b012350-412b-4474-ba3a-1baa5c56fd32" + ], + "x-ms-client-request-id": [ + "e8a029b1-4a94-4752-9fba-6fd3f5cc73a4", + "e8a029b1-4a94-4752-9fba-6fd3f5cc73a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "5b012350-412b-4474-ba3a-1baa5c56fd32" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113623Z:5b012350-412b-4474-ba3a-1baa5c56fd32" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "604aa56e-f682-4ad6-87ef-23cb5e263130" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7a967da9-1206-4d19-a2a5-978af1fa20ce" + ], + "x-ms-client-request-id": [ + "604aa56e-f682-4ad6-87ef-23cb5e263130", + "604aa56e-f682-4ad6-87ef-23cb5e263130" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "7a967da9-1206-4d19-a2a5-978af1fa20ce" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113624Z:7a967da9-1206-4d19-a2a5-978af1fa20ce" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:23 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69759520-b597-4c1d-86a5-a411a9355e72" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8902c437-5f6a-427a-a83e-1e70e585216e" + ], + "x-ms-client-request-id": [ + "69759520-b597-4c1d-86a5-a411a9355e72", + "69759520-b597-4c1d-86a5-a411a9355e72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "8902c437-5f6a-427a-a83e-1e70e585216e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113624Z:8902c437-5f6a-427a-a83e-1e70e585216e" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:24 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46fb7356-ebe7-461b-a455-ec212fd635c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bea70a81-d1c4-4a34-8388-e79286e15653" + ], + "x-ms-client-request-id": [ + "46fb7356-ebe7-461b-a455-ec212fd635c8", + "46fb7356-ebe7-461b-a455-ec212fd635c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "bea70a81-d1c4-4a34-8388-e79286e15653" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113625Z:bea70a81-d1c4-4a34-8388-e79286e15653" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:24 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6172b67-5eee-4800-99db-ab487e01bb35" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dae6e5e7-d976-436b-9c63-47e7d0333926" + ], + "x-ms-client-request-id": [ + "e6172b67-5eee-4800-99db-ab487e01bb35", + "e6172b67-5eee-4800-99db-ab487e01bb35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "dae6e5e7-d976-436b-9c63-47e7d0333926" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113625Z:dae6e5e7-d976-436b-9c63-47e7d0333926" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:25 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "968f064d-a488-432f-acd4-2dd47e61f86b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9f26cca3-4a65-4798-81d6-db8359f55337" + ], + "x-ms-client-request-id": [ + "968f064d-a488-432f-acd4-2dd47e61f86b", + "968f064d-a488-432f-acd4-2dd47e61f86b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "9f26cca3-4a65-4798-81d6-db8359f55337" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113626Z:9f26cca3-4a65-4798-81d6-db8359f55337" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62624de5-abb5-4cc5-beca-7afc292bf23c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "aa101179-a48f-491e-b987-be34f494a357" + ], + "x-ms-client-request-id": [ + "62624de5-abb5-4cc5-beca-7afc292bf23c", + "62624de5-abb5-4cc5-beca-7afc292bf23c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "aa101179-a48f-491e-b987-be34f494a357" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113627Z:aa101179-a48f-491e-b987-be34f494a357" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:26 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd1e1c5b-0cd7-4e23-b3f4-136db8520751" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f8592602-13f2-435f-a03e-0198bdc7f9e9" + ], + "x-ms-client-request-id": [ + "dd1e1c5b-0cd7-4e23-b3f4-136db8520751", + "dd1e1c5b-0cd7-4e23-b3f4-136db8520751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "f8592602-13f2-435f-a03e-0198bdc7f9e9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113627Z:f8592602-13f2-435f-a03e-0198bdc7f9e9" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dca9b25a-1f18-4175-b5fc-7a53911bf728" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7143b108-4907-4a97-8f26-366cd8650b85" + ], + "x-ms-client-request-id": [ + "dca9b25a-1f18-4175-b5fc-7a53911bf728", + "dca9b25a-1f18-4175-b5fc-7a53911bf728" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "7143b108-4907-4a97-8f26-366cd8650b85" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113627Z:7143b108-4907-4a97-8f26-366cd8650b85" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:27 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1604876-d7b9-4286-962f-08e26fbcf1df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d870cb4f-32ea-4f07-b25a-9bec00b7c065" + ], + "x-ms-client-request-id": [ + "b1604876-d7b9-4286-962f-08e26fbcf1df", + "b1604876-d7b9-4286-962f-08e26fbcf1df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "d870cb4f-32ea-4f07-b25a-9bec00b7c065" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113628Z:d870cb4f-32ea-4f07-b25a-9bec00b7c065" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b026b97-77c9-4b11-bb19-22641475b668" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "51dd0d2f-e40f-43de-895c-41211c624878" + ], + "x-ms-client-request-id": [ + "5b026b97-77c9-4b11-bb19-22641475b668", + "5b026b97-77c9-4b11-bb19-22641475b668" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "51dd0d2f-e40f-43de-895c-41211c624878" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113628Z:51dd0d2f-e40f-43de-895c-41211c624878" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db97ad83-41fd-4009-8243-2324036fd4dc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3b60e569-7b73-4906-8bc2-6fbd24b90185" + ], + "x-ms-client-request-id": [ + "db97ad83-41fd-4009-8243-2324036fd4dc", + "db97ad83-41fd-4009-8243-2324036fd4dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "3b60e569-7b73-4906-8bc2-6fbd24b90185" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113629Z:3b60e569-7b73-4906-8bc2-6fbd24b90185" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:28 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44aa734d-c4a0-4b17-a0fb-6ed6372889da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9462229f-cca9-4d47-8051-ecc5c7a3c8c6" + ], + "x-ms-client-request-id": [ + "44aa734d-c4a0-4b17-a0fb-6ed6372889da", + "44aa734d-c4a0-4b17-a0fb-6ed6372889da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "9462229f-cca9-4d47-8051-ecc5c7a3c8c6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113629Z:9462229f-cca9-4d47-8051-ecc5c7a3c8c6" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd9e4296-57f6-4bcf-a342-3ced453db9b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "711ac9fd-db90-469d-9869-395a8ae773ca" + ], + "x-ms-client-request-id": [ + "dd9e4296-57f6-4bcf-a342-3ced453db9b9", + "dd9e4296-57f6-4bcf-a342-3ced453db9b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "711ac9fd-db90-469d-9869-395a8ae773ca" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113629Z:711ac9fd-db90-469d-9869-395a8ae773ca" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:29 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b4e3f32-1581-4a55-808c-72ded6cd6030" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3a03ff43-9a56-4daa-a75f-01d3a0988aac" + ], + "x-ms-client-request-id": [ + "7b4e3f32-1581-4a55-808c-72ded6cd6030", + "7b4e3f32-1581-4a55-808c-72ded6cd6030" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "3a03ff43-9a56-4daa-a75f-01d3a0988aac" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113630Z:3a03ff43-9a56-4daa-a75f-01d3a0988aac" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3b737fc-774e-4ece-9efa-957edab32c01" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b6c2cd27-1979-41fd-b721-91c9b4e94d00" + ], + "x-ms-client-request-id": [ + "a3b737fc-774e-4ece-9efa-957edab32c01", + "a3b737fc-774e-4ece-9efa-957edab32c01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "b6c2cd27-1979-41fd-b721-91c9b4e94d00" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113630Z:b6c2cd27-1979-41fd-b721-91c9b4e94d00" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "389711dd-59e5-45fa-b701-1610b79c2c3a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dac42252-2c5d-4229-9f98-50be23c78f95" + ], + "x-ms-client-request-id": [ + "389711dd-59e5-45fa-b701-1610b79c2c3a", + "389711dd-59e5-45fa-b701-1610b79c2c3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "dac42252-2c5d-4229-9f98-50be23c78f95" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113631Z:dac42252-2c5d-4229-9f98-50be23c78f95" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:30 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45d56702-b7a0-4af4-a0c3-97042757a4b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d7b7125f-f2c3-48dd-a8b7-30728a136783" + ], + "x-ms-client-request-id": [ + "45d56702-b7a0-4af4-a0c3-97042757a4b0", + "45d56702-b7a0-4af4-a0c3-97042757a4b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "d7b7125f-f2c3-48dd-a8b7-30728a136783" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113631Z:d7b7125f-f2c3-48dd-a8b7-30728a136783" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:31 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbbad79e-ec7f-40e9-8cdb-891d8469de4e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "765624eb-354f-47d2-90f4-8df29c55ec7b" + ], + "x-ms-client-request-id": [ + "dbbad79e-ec7f-40e9-8cdb-891d8469de4e", + "dbbad79e-ec7f-40e9-8cdb-891d8469de4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "765624eb-354f-47d2-90f4-8df29c55ec7b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113632Z:765624eb-354f-47d2-90f4-8df29c55ec7b" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:31 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "867571d7-4dc4-49b5-8e2f-e669860aa726" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9f0acbdc-ae71-4a88-89fa-ab3e85663b18" + ], + "x-ms-client-request-id": [ + "867571d7-4dc4-49b5-8e2f-e669860aa726", + "867571d7-4dc4-49b5-8e2f-e669860aa726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "9f0acbdc-ae71-4a88-89fa-ab3e85663b18" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113632Z:9f0acbdc-ae71-4a88-89fa-ab3e85663b18" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e03cda8a-a1c8-47c1-9177-5814788abbee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6b778426-c209-4b69-8b6c-3575fa002ed5" + ], + "x-ms-client-request-id": [ + "e03cda8a-a1c8-47c1-9177-5814788abbee", + "e03cda8a-a1c8-47c1-9177-5814788abbee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "6b778426-c209-4b69-8b6c-3575fa002ed5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113633Z:6b778426-c209-4b69-8b6c-3575fa002ed5" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:32 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71499d99-2e70-448e-b9da-60ad1a5069bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "19e849dc-6608-4485-835c-4929ba9feb2a" + ], + "x-ms-client-request-id": [ + "71499d99-2e70-448e-b9da-60ad1a5069bd", + "71499d99-2e70-448e-b9da-60ad1a5069bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "19e849dc-6608-4485-835c-4929ba9feb2a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113633Z:19e849dc-6608-4485-835c-4929ba9feb2a" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:33 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "421ab490-9eb4-4140-95bf-a265ded6e067" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7577b681-91d2-476a-b84d-eb53021c0059" + ], + "x-ms-client-request-id": [ + "421ab490-9eb4-4140-95bf-a265ded6e067", + "421ab490-9eb4-4140-95bf-a265ded6e067" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "7577b681-91d2-476a-b84d-eb53021c0059" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113633Z:7577b681-91d2-476a-b84d-eb53021c0059" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:33 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "011c462c-f092-4e6e-817a-6109192f3331" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "93d2f8cd-af4d-4199-a8cd-719a00ee8a34" + ], + "x-ms-client-request-id": [ + "011c462c-f092-4e6e-817a-6109192f3331", + "011c462c-f092-4e6e-817a-6109192f3331" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "93d2f8cd-af4d-4199-a8cd-719a00ee8a34" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113634Z:93d2f8cd-af4d-4199-a8cd-719a00ee8a34" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:33 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e35c9e80-2c12-42c8-8d7e-8fad97a9b54e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5223ca68-7bde-45bf-9b19-bb7c1d4fccd7" + ], + "x-ms-client-request-id": [ + "e35c9e80-2c12-42c8-8d7e-8fad97a9b54e", + "e35c9e80-2c12-42c8-8d7e-8fad97a9b54e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "5223ca68-7bde-45bf-9b19-bb7c1d4fccd7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113634Z:5223ca68-7bde-45bf-9b19-bb7c1d4fccd7" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:34 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e41c5cd-c136-4efa-94e3-0d373f1efbc3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a7b76bbf-8489-4fb5-b2e1-3a3fae7ee45a" + ], + "x-ms-client-request-id": [ + "7e41c5cd-c136-4efa-94e3-0d373f1efbc3", + "7e41c5cd-c136-4efa-94e3-0d373f1efbc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "a7b76bbf-8489-4fb5-b2e1-3a3fae7ee45a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113635Z:a7b76bbf-8489-4fb5-b2e1-3a3fae7ee45a" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:34 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f7d4739-7430-4f60-81f2-85411734aa60" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "aafe6715-02ec-4eda-aaf0-dc6f78e38ede" + ], + "x-ms-client-request-id": [ + "0f7d4739-7430-4f60-81f2-85411734aa60", + "0f7d4739-7430-4f60-81f2-85411734aa60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "aafe6715-02ec-4eda-aaf0-dc6f78e38ede" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113635Z:aafe6715-02ec-4eda-aaf0-dc6f78e38ede" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:35 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ab38f62-1d78-45c8-a55d-2b2566d4c86b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6cfad987-6221-41d6-a04a-f3044849b5af" + ], + "x-ms-client-request-id": [ + "5ab38f62-1d78-45c8-a55d-2b2566d4c86b", + "5ab38f62-1d78-45c8-a55d-2b2566d4c86b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "6cfad987-6221-41d6-a04a-f3044849b5af" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113635Z:6cfad987-6221-41d6-a04a-f3044849b5af" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:35 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "027b592b-7d8d-4623-b516-e73e01cf078d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "19374aa2-f73a-4bba-aaca-8f796596b89b" + ], + "x-ms-client-request-id": [ + "027b592b-7d8d-4623-b516-e73e01cf078d", + "027b592b-7d8d-4623-b516-e73e01cf078d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "19374aa2-f73a-4bba-aaca-8f796596b89b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113636Z:19374aa2-f73a-4bba-aaca-8f796596b89b" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:36 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "acb8ac0f-3fc0-4264-bf40-6c181d706691" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5f00ebd8-9806-4ad0-85c5-72713a740692" + ], + "x-ms-client-request-id": [ + "acb8ac0f-3fc0-4264-bf40-6c181d706691", + "acb8ac0f-3fc0-4264-bf40-6c181d706691" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "5f00ebd8-9806-4ad0-85c5-72713a740692" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113636Z:5f00ebd8-9806-4ad0-85c5-72713a740692" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:36 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a81383fc-63c6-4e0f-a3e6-a762eb1f3581" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "efc2b7d6-9425-4f3d-91a5-d65fc61febd0" + ], + "x-ms-client-request-id": [ + "a81383fc-63c6-4e0f-a3e6-a762eb1f3581", + "a81383fc-63c6-4e0f-a3e6-a762eb1f3581" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "efc2b7d6-9425-4f3d-91a5-d65fc61febd0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113637Z:efc2b7d6-9425-4f3d-91a5-d65fc61febd0" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:36 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "810d6f86-990f-4ad6-acf0-7985edfde0d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4ef69829-ff96-437b-bad0-91e94f30b683" + ], + "x-ms-client-request-id": [ + "810d6f86-990f-4ad6-acf0-7985edfde0d0", + "810d6f86-990f-4ad6-acf0-7985edfde0d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "4ef69829-ff96-437b-bad0-91e94f30b683" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113637Z:4ef69829-ff96-437b-bad0-91e94f30b683" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:37 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb845e52-ec81-4b58-80ce-5ebcc1e94dfa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "50a6c076-85c7-420d-9673-21093104d356" + ], + "x-ms-client-request-id": [ + "eb845e52-ec81-4b58-80ce-5ebcc1e94dfa", + "eb845e52-ec81-4b58-80ce-5ebcc1e94dfa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-correlation-request-id": [ + "50a6c076-85c7-420d-9673-21093104d356" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113638Z:50a6c076-85c7-420d-9673-21093104d356" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:37 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6a19d1a-834c-4bd8-bf70-d779a3a838ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a939084f-30d2-499e-8513-6b36b2cbb4ad" + ], + "x-ms-client-request-id": [ + "a6a19d1a-834c-4bd8-bf70-d779a3a838ef", + "a6a19d1a-834c-4bd8-bf70-d779a3a838ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "a939084f-30d2-499e-8513-6b36b2cbb4ad" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113638Z:a939084f-30d2-499e-8513-6b36b2cbb4ad" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca06994a-8018-4714-a024-38901aef8644" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "178ed978-7ddc-492b-8475-7dd4a190bcbc" + ], + "x-ms-client-request-id": [ + "ca06994a-8018-4714-a024-38901aef8644", + "ca06994a-8018-4714-a024-38901aef8644" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "178ed978-7ddc-492b-8475-7dd4a190bcbc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113638Z:178ed978-7ddc-492b-8475-7dd4a190bcbc" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:38 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "321b15a4-1760-4300-91f5-ddf56f66babc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9b0ff9ca-0d7f-44d0-a5fc-817e00c8bed8" + ], + "x-ms-client-request-id": [ + "321b15a4-1760-4300-91f5-ddf56f66babc", + "321b15a4-1760-4300-91f5-ddf56f66babc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "9b0ff9ca-0d7f-44d0-a5fc-817e00c8bed8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113639Z:9b0ff9ca-0d7f-44d0-a5fc-817e00c8bed8" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ed298a3-89c2-43fb-b8bd-fa1fd01c230e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ad2d51cb-d868-4166-b6a8-fe182b187dbc" + ], + "x-ms-client-request-id": [ + "1ed298a3-89c2-43fb-b8bd-fa1fd01c230e", + "1ed298a3-89c2-43fb-b8bd-fa1fd01c230e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "ad2d51cb-d868-4166-b6a8-fe182b187dbc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113639Z:ad2d51cb-d868-4166-b6a8-fe182b187dbc" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cd1ced1-3486-4fe0-a739-cf247732823f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "72f247cc-affd-49fc-93b6-d19f1e00149f" + ], + "x-ms-client-request-id": [ + "4cd1ced1-3486-4fe0-a739-cf247732823f", + "4cd1ced1-3486-4fe0-a739-cf247732823f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "72f247cc-affd-49fc-93b6-d19f1e00149f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113640Z:72f247cc-affd-49fc-93b6-d19f1e00149f" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:39 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7382ded7-c433-41f0-9720-49ace4059fc4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fa22374c-5310-48a3-8a69-6ca5b1540aa6" + ], + "x-ms-client-request-id": [ + "7382ded7-c433-41f0-9720-49ace4059fc4", + "7382ded7-c433-41f0-9720-49ace4059fc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "fa22374c-5310-48a3-8a69-6ca5b1540aa6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113640Z:fa22374c-5310-48a3-8a69-6ca5b1540aa6" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:40 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "849ec91d-efdb-444b-beb4-cd1d1afcf60b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "18f953f4-ec1e-4ee1-8163-57695c2590fb" + ], + "x-ms-client-request-id": [ + "849ec91d-efdb-444b-beb4-cd1d1afcf60b", + "849ec91d-efdb-444b-beb4-cd1d1afcf60b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "18f953f4-ec1e-4ee1-8163-57695c2590fb" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113641Z:18f953f4-ec1e-4ee1-8163-57695c2590fb" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:40 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e137413-8c7f-463f-a86f-793e98994f9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6a8cda87-51e7-4af0-9b55-6a3e755ca8db" + ], + "x-ms-client-request-id": [ + "4e137413-8c7f-463f-a86f-793e98994f9f", + "4e137413-8c7f-463f-a86f-793e98994f9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "6a8cda87-51e7-4af0-9b55-6a3e755ca8db" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113641Z:6a8cda87-51e7-4af0-9b55-6a3e755ca8db" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08754c30-563d-41f9-875a-6ef3940d64c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "38a6ea4a-1027-4e3b-8685-08a6f0eee246" + ], + "x-ms-client-request-id": [ + "08754c30-563d-41f9-875a-6ef3940d64c7", + "08754c30-563d-41f9-875a-6ef3940d64c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "38a6ea4a-1027-4e3b-8685-08a6f0eee246" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113641Z:38a6ea4a-1027-4e3b-8685-08a6f0eee246" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bd91465-0a38-4066-aa56-94e82a3b124d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "487d2415-116e-4248-9f81-d91fe9924eec" + ], + "x-ms-client-request-id": [ + "3bd91465-0a38-4066-aa56-94e82a3b124d", + "3bd91465-0a38-4066-aa56-94e82a3b124d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-correlation-request-id": [ + "487d2415-116e-4248-9f81-d91fe9924eec" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113642Z:487d2415-116e-4248-9f81-d91fe9924eec" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:41 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa249346-ad53-4194-b6eb-7ca330081359" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a2942b43-7acb-4103-9272-6ac29a24d4b2" + ], + "x-ms-client-request-id": [ + "aa249346-ad53-4194-b6eb-7ca330081359", + "aa249346-ad53-4194-b6eb-7ca330081359" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "a2942b43-7acb-4103-9272-6ac29a24d4b2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113642Z:a2942b43-7acb-4103-9272-6ac29a24d4b2" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bc0c1d0-0302-446c-9b5d-2b55d1c33f73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8b93e1ac-17f4-488b-97f3-c92c1895f38e" + ], + "x-ms-client-request-id": [ + "5bc0c1d0-0302-446c-9b5d-2b55d1c33f73", + "5bc0c1d0-0302-446c-9b5d-2b55d1c33f73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-correlation-request-id": [ + "8b93e1ac-17f4-488b-97f3-c92c1895f38e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113643Z:8b93e1ac-17f4-488b-97f3-c92c1895f38e" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:42 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e9e79b5-454d-4ae1-a313-5b0687b8bd54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "589cc027-016d-4ea6-a13a-5bdb8c7e17d7" + ], + "x-ms-client-request-id": [ + "2e9e79b5-454d-4ae1-a313-5b0687b8bd54", + "2e9e79b5-454d-4ae1-a313-5b0687b8bd54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-correlation-request-id": [ + "589cc027-016d-4ea6-a13a-5bdb8c7e17d7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113643Z:589cc027-016d-4ea6-a13a-5bdb8c7e17d7" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab0f9e54-1190-49ff-809c-535d98614817" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bfdaf564-798d-420a-b2fe-239676994f3d" + ], + "x-ms-client-request-id": [ + "ab0f9e54-1190-49ff-809c-535d98614817", + "ab0f9e54-1190-49ff-809c-535d98614817" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-correlation-request-id": [ + "bfdaf564-798d-420a-b2fe-239676994f3d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113644Z:bfdaf564-798d-420a-b2fe-239676994f3d" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:43 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8354a016-c17f-4557-b4a9-e9203ff8fa9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7a307c70-2f55-4e9e-8a49-f53de84958f2" + ], + "x-ms-client-request-id": [ + "8354a016-c17f-4557-b4a9-e9203ff8fa9b", + "8354a016-c17f-4557-b4a9-e9203ff8fa9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-correlation-request-id": [ + "7a307c70-2f55-4e9e-8a49-f53de84958f2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113645Z:7a307c70-2f55-4e9e-8a49-f53de84958f2" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:44 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7960c0b5-5285-4f82-bfd9-09cfc755c141" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3fb6feb7-1a74-4993-bd40-35b82bf452b1" + ], + "x-ms-client-request-id": [ + "7960c0b5-5285-4f82-bfd9-09cfc755c141", + "7960c0b5-5285-4f82-bfd9-09cfc755c141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-correlation-request-id": [ + "3fb6feb7-1a74-4993-bd40-35b82bf452b1" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113645Z:3fb6feb7-1a74-4993-bd40-35b82bf452b1" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a42d5f0f-93d5-40a1-bef7-0449c7442421" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "93838e27-baad-4a17-881b-f5ed1dd5b6d6" + ], + "x-ms-client-request-id": [ + "a42d5f0f-93d5-40a1-bef7-0449c7442421", + "a42d5f0f-93d5-40a1-bef7-0449c7442421" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-correlation-request-id": [ + "93838e27-baad-4a17-881b-f5ed1dd5b6d6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113646Z:93838e27-baad-4a17-881b-f5ed1dd5b6d6" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:45 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f06a6e81-58ec-47c6-82c0-a698752c6136" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "192f5bf7-d0c8-4d08-99fa-e01edf4b8563" + ], + "x-ms-client-request-id": [ + "f06a6e81-58ec-47c6-82c0-a698752c6136", + "f06a6e81-58ec-47c6-82c0-a698752c6136" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-correlation-request-id": [ + "192f5bf7-d0c8-4d08-99fa-e01edf4b8563" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113646Z:192f5bf7-d0c8-4d08-99fa-e01edf4b8563" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4c06dc4-2f4d-406a-8b63-9ba58a91a6e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7f9789a3-3b23-41de-84d1-dd00b06df5b4" + ], + "x-ms-client-request-id": [ + "c4c06dc4-2f4d-406a-8b63-9ba58a91a6e4", + "c4c06dc4-2f4d-406a-8b63-9ba58a91a6e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-correlation-request-id": [ + "7f9789a3-3b23-41de-84d1-dd00b06df5b4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113646Z:7f9789a3-3b23-41de-84d1-dd00b06df5b4" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:46 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa000fd4-d8b7-4e70-b9dd-7d8068b54390" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0452fc85-f7c6-4251-8b58-de1aeccfce57" + ], + "x-ms-client-request-id": [ + "fa000fd4-d8b7-4e70-b9dd-7d8068b54390", + "fa000fd4-d8b7-4e70-b9dd-7d8068b54390" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-correlation-request-id": [ + "0452fc85-f7c6-4251-8b58-de1aeccfce57" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113647Z:0452fc85-f7c6-4251-8b58-de1aeccfce57" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:47 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"41d418ee-0a37-4c0e-93e1-941076a23490\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupOperations/74053829-d563-42af-9b6d-9455df867a0a?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwT3BlcmF0aW9ucy83NDA1MzgyOS1kNTYzLTQyYWYtOWI2ZC05NDU1ZGY4NjdhMGE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d89bf86f-91ae-4bb3-aefd-fb1d2abce8d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b220fa73-d255-4877-b03b-6a0070ea137e" + ], + "x-ms-client-request-id": [ + "d89bf86f-91ae-4bb3-aefd-fb1d2abce8d1", + "d89bf86f-91ae-4bb3-aefd-fb1d2abce8d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-correlation-request-id": [ + "b220fa73-d255-4877-b03b-6a0070ea137e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113647Z:b220fa73-d255-4877-b03b-6a0070ea137e" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:47 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"name\": \"74053829-d563-42af-9b6d-9455df867a0a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"41d418ee-0a37-4c0e-93e1-941076a23490\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupJobs/41d418ee-0a37-4c0e-93e1-941076a23490?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwSm9icy80MWQ0MThlZS0wYTM3LTRjMGUtOTNlMS05NDEwNzZhMjM0OTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b05cd3d8-b734-47e9-ba7a-a26cf8057284" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Microsoft-IIS/10.0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "898ebe68-27f2-4298-8b07-a47f73a41b84" + ], + "x-ms-client-request-id": [ + "b05cd3d8-b734-47e9-ba7a-a26cf8057284", + "b05cd3d8-b734-47e9-ba7a-a26cf8057284" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-correlation-request-id": [ + "898ebe68-27f2-4298-8b07-a47f73a41b84" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113648Z:898ebe68-27f2-4298-8b07-a47f73a41b84" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:47 GMT" + ], + "Content-Length": [ + "836" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupJobs/41d418ee-0a37-4c0e-93e1-941076a23490\",\r\n \"name\": \"41d418ee-0a37-4c0e-93e1-941076a23490\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureIaaSVMJob\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"duration\": \"PT30.9724476S\",\r\n \"virtualMachineVersion\": \"Compute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"VM Name\": \"pstestvm545483\",\r\n \"Policy Name\": \"DefaultPolicy\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"pstestvm545483\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-08-26T11:36:15.6162646Z\",\r\n \"endTime\": \"2020-08-26T11:36:46.5887122Z\",\r\n \"activityId\": \"f3e17182-4fbf-4a32-ad15-60cd7eed5e7b\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlSWFhc1ZNJyUyMGFuZCUyMGl0ZW1UeXBlJTIwZXElMjAnVk0nJmFwaS12ZXJzaW9uPTIwMTktMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cde91178-8b9e-4953-ae8a-52210017db25" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "894811fd-235d-4dee-9d6b-3901113228e9" + ], + "x-ms-client-request-id": [ + "cde91178-8b9e-4953-ae8a-52210017db25", + "cde91178-8b9e-4953-ae8a-52210017db25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-correlation-request-id": [ + "894811fd-235d-4dee-9d6b-3901113228e9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113649Z:894811fd-235d-4dee-9d6b-3901113228e9" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:48 GMT" + ], + "Content-Length": [ + "1442" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM545483\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"healthStatus\": \"Passed\",\r\n \"lastBackupStatus\": \"\",\r\n \"lastBackupTime\": \"2001-01-01T00:00:00Z\",\r\n \"protectedItemDataId\": \"70370838940336\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"policyId\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlSWFhc1ZNJyUyMGFuZCUyMGl0ZW1UeXBlJTIwZXElMjAnVk0nJmFwaS12ZXJzaW9uPTIwMTktMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a590665-c9e7-4398-b3c7-ae8e50190262" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7d3e275a-bed4-4d1a-b4c9-2191e478bd1d" + ], + "x-ms-client-request-id": [ + "6a590665-c9e7-4398-b3c7-ae8e50190262", + "6a590665-c9e7-4398-b3c7-ae8e50190262" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-correlation-request-id": [ + "7d3e275a-bed4-4d1a-b4c9-2191e478bd1d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113653Z:7d3e275a-bed4-4d1a-b4c9-2191e478bd1d" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:52 GMT" + ], + "Content-Length": [ + "1442" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM545483\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"healthStatus\": \"Passed\",\r\n \"lastBackupStatus\": \"\",\r\n \"lastBackupTime\": \"2001-01-01T00:00:00Z\",\r\n \"protectedItemDataId\": \"70370838940336\",\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"policyId\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bhiagasrcrg2%3Bpstestvm545483/protectedItems/VM%3Biaasvmcontainerv2%3Bhiagasrcrg2%3Bpstestvm545483?$filter=expand%20eq%20'extendedinfo'&api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9JYWFzVk1Db250YWluZXIlM0JpYWFzdm1jb250YWluZXJ2MiUzQmhpYWdhc3JjcmcyJTNCcHN0ZXN0dm01NDU0ODMvcHJvdGVjdGVkSXRlbXMvVk0lM0JpYWFzdm1jb250YWluZXJ2MiUzQmhpYWdhc3JjcmcyJTNCcHN0ZXN0dm01NDU0ODM/JGZpbHRlcj1leHBhbmQlMjBlcSUyMCdleHRlbmRlZGluZm8nJmFwaS12ZXJzaW9uPTIwMTktMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d81971af-6fd8-4590-977b-b938869c0b9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "298ec3e2-e6a3-4c36-bb24-3a253e169573" + ], + "x-ms-client-request-id": [ + "d81971af-6fd8-4590-977b-b938869c0b9a", + "d81971af-6fd8-4590-977b-b938869c0b9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-correlation-request-id": [ + "298ec3e2-e6a3-4c36-bb24-3a253e169573" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113649Z:298ec3e2-e6a3-4c36-bb24-3a253e169573" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:49 GMT" + ], + "Content-Length": [ + "1497" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"name\": \"VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"kpisHealths\": {},\r\n \"friendlyName\": \"PSTestVM545483\",\r\n \"virtualMachineId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"healthStatus\": \"Passed\",\r\n \"lastBackupStatus\": \"\",\r\n \"lastBackupTime\": \"2001-01-01T00:00:00Z\",\r\n \"protectedItemDataId\": \"70370838940336\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyInconsistent\": false\r\n },\r\n \"protectedItemType\": \"Microsoft.Compute/virtualMachines\",\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"workloadType\": \"VM\",\r\n \"containerName\": \"iaasvmcontainerv2;hiagasrcrg2;pstestvm545483\",\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483\",\r\n \"policyId\": \"/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupPolicies/DefaultPolicy\",\r\n \"policyName\": \"DefaultPolicy\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupconfig/vaultconfig?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwY29uZmlnL3ZhdWx0Y29uZmlnP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35289c89-bb7a-4b37-8539-fc179683c22f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c5a84f90-1e97-4948-9b85-199a8632794c" + ], + "x-ms-client-request-id": [ + "35289c89-bb7a-4b37-8539-fc179683c22f", + "35289c89-bb7a-4b37-8539-fc179683c22f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-correlation-request-id": [ + "c5a84f90-1e97-4948-9b85-199a8632794c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113650Z:c5a84f90-1e97-4948-9b85-199a8632794c" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:49 GMT" + ], + "Content-Length": [ + "381" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupconfig/vaultconfig\",\r\n \"name\": \"vaultconfig\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupconfig\",\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Enabled\",\r\n \"isSoftDeleteFeatureStateEditable\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupconfig/vaultconfig?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwY29uZmlnL3ZhdWx0Y29uZmlnP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67c76dd3-2f70-43d1-836d-cc18c60f547d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "111" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d99b2de8-bf34-4c96-8371-04d3ed779396" + ], + "x-ms-client-request-id": [ + "67c76dd3-2f70-43d1-836d-cc18c60f547d", + "67c76dd3-2f70-43d1-836d-cc18c60f547d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d99b2de8-bf34-4c96-8371-04d3ed779396" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113650Z:d99b2de8-bf34-4c96-8371-04d3ed779396" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:50 GMT" + ], + "Content-Length": [ + "382" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupconfig/vaultconfig\",\r\n \"name\": \"vaultconfig\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupconfig\",\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\",\r\n \"isSoftDeleteFeatureStateEditable\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupconfig/vaultconfig?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwY29uZmlnL3ZhdWx0Y29uZmlnP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2292458-c97c-4944-96dd-1de60ac93ba2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "710c14b0-83bf-4ade-bb02-20145ea00022" + ], + "x-ms-client-request-id": [ + "b2292458-c97c-4944-96dd-1de60ac93ba2", + "b2292458-c97c-4944-96dd-1de60ac93ba2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-correlation-request-id": [ + "710c14b0-83bf-4ade-bb02-20145ea00022" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113651Z:710c14b0-83bf-4ade-bb02-20145ea00022" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:50 GMT" + ], + "Content-Length": [ + "381" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupconfig/vaultconfig\",\r\n \"name\": \"vaultconfig\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupconfig\",\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Enabled\",\r\n \"isSoftDeleteFeatureStateEditable\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupconfig/vaultconfig?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwY29uZmlnL3ZhdWx0Y29uZmlnP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38e6966e-e889-4c28-a9f2-85f4b62dfad1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "111" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dd8b4468-edbe-4333-9d53-c02ad6fe093b" + ], + "x-ms-client-request-id": [ + "38e6966e-e889-4c28-a9f2-85f4b62dfad1", + "38e6966e-e889-4c28-a9f2-85f4b62dfad1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "dd8b4468-edbe-4333-9d53-c02ad6fe093b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113652Z:dd8b4468-edbe-4333-9d53-c02ad6fe093b" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:51 GMT" + ], + "Content-Length": [ + "382" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupconfig/vaultconfig\",\r\n \"name\": \"vaultconfig\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupconfig\",\r\n \"properties\": {\r\n \"enhancedSecurityState\": \"Enabled\",\r\n \"softDeleteFeatureState\": \"Disabled\",\r\n \"isSoftDeleteFeatureStateEditable\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupUsageSummaries?$filter=type%20eq%20'BackupProtectionContainerCountSummary'&api-version=2017-07-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwVXNhZ2VTdW1tYXJpZXM/JGZpbHRlcj10eXBlJTIwZXElMjAnQmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lckNvdW50U3VtbWFyeScmYXBpLXZlcnNpb249MjAxNy0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0c902f8-6556-446f-9636-b08af5675ff6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e73fe5ad-2c46-40d1-a028-65e0a7b5d2ae" + ], + "x-ms-client-request-id": [ + "a0c902f8-6556-446f-9636-b08af5675ff6", + "a0c902f8-6556-446f-9636-b08af5675ff6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-correlation-request-id": [ + "e73fe5ad-2c46-40d1-a028-65e0a7b5d2ae" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113652Z:e73fe5ad-2c46-40d1-a028-65e0a7b5d2ae" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:52 GMT" + ], + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 0,\r\n \"limit\": -1,\r\n \"name\": {\r\n \"value\": \"AzureBackupServer\",\r\n \"localizedValue\": \"Azure Backup Server\"\r\n }\r\n },\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 0,\r\n \"limit\": -1,\r\n \"name\": {\r\n \"value\": \"DPM\",\r\n \"localizedValue\": \"DPM\"\r\n }\r\n },\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 0,\r\n \"limit\": -1,\r\n \"name\": {\r\n \"value\": \"MAB\",\r\n \"localizedValue\": \"Azure Backup Agent\"\r\n }\r\n },\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 0,\r\n \"limit\": -1,\r\n \"name\": {\r\n \"value\": \"AzureWorkload\",\r\n \"localizedValue\": \"Workload in Azure VM\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupUsageSummaries?$filter=type%20eq%20'BackupProtectionContainerCountSummary'&api-version=2017-07-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwVXNhZ2VTdW1tYXJpZXM/JGZpbHRlcj10eXBlJTIwZXElMjAnQmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lckNvdW50U3VtbWFyeScmYXBpLXZlcnNpb249MjAxNy0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bdf2bac-be95-42ab-a992-c993bf84e8b7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c2e9ba35-4523-48de-937d-fa096277095b" + ], + "x-ms-client-request-id": [ + "4bdf2bac-be95-42ab-a992-c993bf84e8b7", + "4bdf2bac-be95-42ab-a992-c993bf84e8b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-correlation-request-id": [ + "c2e9ba35-4523-48de-937d-fa096277095b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113654Z:c2e9ba35-4523-48de-937d-fa096277095b" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:53 GMT" + ], + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 0,\r\n \"limit\": -1,\r\n \"name\": {\r\n \"value\": \"AzureBackupServer\",\r\n \"localizedValue\": \"Azure Backup Server\"\r\n }\r\n },\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 0,\r\n \"limit\": -1,\r\n \"name\": {\r\n \"value\": \"DPM\",\r\n \"localizedValue\": \"DPM\"\r\n }\r\n },\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 0,\r\n \"limit\": -1,\r\n \"name\": {\r\n \"value\": \"MAB\",\r\n \"localizedValue\": \"Azure Backup Agent\"\r\n }\r\n },\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 0,\r\n \"limit\": -1,\r\n \"name\": {\r\n \"value\": \"AzureWorkload\",\r\n \"localizedValue\": \"Workload in Azure VM\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20itemType%20eq%20'VM'&api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlSWFhc1ZNJyUyMGFuZCUyMGl0ZW1UeXBlJTIwZXElMjAnVk0nJmFwaS12ZXJzaW9uPTIwMTktMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57a64d46-6bf5-4fb0-917c-20f0c2d2d689" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "09001b01-d1b5-4d1e-a4ad-48311abe67ea" + ], + "x-ms-client-request-id": [ + "57a64d46-6bf5-4fb0-917c-20f0c2d2d689", + "57a64d46-6bf5-4fb0-917c-20f0c2d2d689" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-correlation-request-id": [ + "09001b01-d1b5-4d1e-a4ad-48311abe67ea" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113654Z:09001b01-d1b5-4d1e-a4ad-48311abe67ea" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:54 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3Vwc3RvcmFnZWNvbmZpZy92YXVsdHN0b3JhZ2Vjb25maWc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d9c7696-2dea-4af6-a460-728fc27d39d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "22679d04-3d5b-407b-8116-0e68d303e9e6" + ], + "x-ms-client-request-id": [ + "0d9c7696-2dea-4af6-a460-728fc27d39d8", + "0d9c7696-2dea-4af6-a460-728fc27d39d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-correlation-request-id": [ + "22679d04-3d5b-407b-8116-0e68d303e9e6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113655Z:22679d04-3d5b-407b-8116-0e68d303e9e6" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:54 GMT" + ], + "Content-Length": [ + "472" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig\",\r\n \"name\": \"vaultstorageconfig\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupstorageconfig\",\r\n \"properties\": {\r\n \"storageModelType\": \"GeoRedundant\",\r\n \"storageType\": \"GeoRedundant\",\r\n \"dedupState\": \"Disabled\",\r\n \"xcoolState\": \"Disabled\",\r\n \"storageTypeState\": \"Unlocked\",\r\n \"crossRegionRestoreFlag\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/prepareDataMove?api-version=2020-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3Vwc3RvcmFnZWNvbmZpZy92YXVsdHN0b3JhZ2Vjb25maWcvcHJlcGFyZURhdGFNb3ZlP2FwaS12ZXJzaW9uPTIwMjAtMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f\",\r\n \"targetRegion\": \"eastus2euap\",\r\n \"dataMoveLevel\": \"Vault\",\r\n \"ignoreMoved\": false\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "663d59c3-9136-4449-bbd3-894e82b4ea9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "264" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationResults/44525b41-a3db-4250-8707-6acb0ab8c5a2?api-version=2020-07-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationStatus/44525b41-a3db-4250-8707-6acb0ab8c5a2?api-version=2020-07-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f8ef9405-a975-4f10-8a2b-6d0fd5076282" + ], + "x-ms-client-request-id": [ + "663d59c3-9136-4449-bbd3-894e82b4ea9b", + "663d59c3-9136-4449-bbd3-894e82b4ea9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f8ef9405-a975-4f10-8a2b-6d0fd5076282" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113655Z:f8ef9405-a975-4f10-8a2b-6d0fd5076282" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationStatus/44525b41-a3db-4250-8707-6acb0ab8c5a2?api-version=2020-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3Vwc3RvcmFnZWNvbmZpZy92YXVsdHN0b3JhZ2Vjb25maWcvb3BlcmF0aW9uU3RhdHVzLzQ0NTI1YjQxLWEzZGItNDI1MC04NzA3LTZhY2IwYWI4YzVhMj9hcGktdmVyc2lvbj0yMDIwLTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64ac6b81-b25c-4cf4-b632-92f8624963bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a90bace2-6aa4-4739-bc64-f2b0bb23bb86" + ], + "x-ms-client-request-id": [ + "64ac6b81-b25c-4cf4-b632-92f8624963bd", + "64ac6b81-b25c-4cf4-b632-92f8624963bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-correlation-request-id": [ + "a90bace2-6aa4-4739-bc64-f2b0bb23bb86" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113656Z:a90bace2-6aa4-4739-bc64-f2b0bb23bb86" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:55 GMT" + ], + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"44525b41-a3db-4250-8707-6acb0ab8c5a2\",\r\n \"name\": \"44525b41-a3db-4250-8707-6acb0ab8c5a2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-26T11:36:55.56219Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationStatus/44525b41-a3db-4250-8707-6acb0ab8c5a2?api-version=2020-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3Vwc3RvcmFnZWNvbmZpZy92YXVsdHN0b3JhZ2Vjb25maWcvb3BlcmF0aW9uU3RhdHVzLzQ0NTI1YjQxLWEzZGItNDI1MC04NzA3LTZhY2IwYWI4YzVhMj9hcGktdmVyc2lvbj0yMDIwLTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f16709b5-7c77-426a-9f11-693d9030f898" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "79b13ecc-f582-4d73-b2a5-7c5007768fc0" + ], + "x-ms-client-request-id": [ + "f16709b5-7c77-426a-9f11-693d9030f898", + "f16709b5-7c77-426a-9f11-693d9030f898" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-correlation-request-id": [ + "79b13ecc-f582-4d73-b2a5-7c5007768fc0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113656Z:79b13ecc-f582-4d73-b2a5-7c5007768fc0" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:56 GMT" + ], + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"44525b41-a3db-4250-8707-6acb0ab8c5a2\",\r\n \"name\": \"44525b41-a3db-4250-8707-6acb0ab8c5a2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-26T11:36:55.56219Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationResults/44525b41-a3db-4250-8707-6acb0ab8c5a2?api-version=2020-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3Vwc3RvcmFnZWNvbmZpZy92YXVsdHN0b3JhZ2Vjb25maWcvb3BlcmF0aW9uUmVzdWx0cy80NDUyNWI0MS1hM2RiLTQyNTAtODcwNy02YWNiMGFiOGM1YTI/YXBpLXZlcnNpb249MjAyMC0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51183c9e-94a9-4297-a973-9e70d660dedc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ab181dee-bbda-44c7-8c54-34a5cf959b06" + ], + "x-ms-client-request-id": [ + "51183c9e-94a9-4297-a973-9e70d660dedc", + "51183c9e-94a9-4297-a973-9e70d660dedc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-correlation-request-id": [ + "ab181dee-bbda-44c7-8c54-34a5cf959b06" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113657Z:ab181dee-bbda-44c7-8c54-34a5cf959b06" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:56 GMT" + ], + "Content-Length": [ + "143" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"correlationId\": \"MzQ5NjM5MjI4MzA2Nzg3MzAxMjtmOGVmOTQwNS1hOTc1LTRmMTAtOGEyYi02ZDBmZDUwNzYyODI7UHVibGlj\",\r\n \"objectType\": \"PrepareDataMoveResponse\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/triggerDataMove?api-version=2020-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3Vwc3RvcmFnZWNvbmZpZy92YXVsdHN0b3JhZ2Vjb25maWcvdHJpZ2dlckRhdGFNb3ZlP2FwaS12ZXJzaW9uPTIwMjAtMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"sourceResourceId\": \"/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f\",\r\n \"sourceRegion\": \"centraluseuap\",\r\n \"dataMoveLevel\": \"Vault\",\r\n \"correlationId\": \"MzQ5NjM5MjI4MzA2Nzg3MzAxMjtmOGVmOTQwNS1hOTc1LTRmMTAtOGEyYi02ZDBmZDUwNzYyODI7UHVibGlj\",\r\n \"pauseGC\": false\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a8fee73-aca5-4729-8134-36713ac28b84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "370" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationStatus/0157f327-4f98-4fe7-9906-e24001bd717c?api-version=2020-07-01" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationStatus/0157f327-4f98-4fe7-9906-e24001bd717c?api-version=2020-07-01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "793e67bf-f59b-4248-8395-9b3f725dd97e" + ], + "x-ms-client-request-id": [ + "7a8fee73-aca5-4729-8134-36713ac28b84", + "7a8fee73-aca5-4729-8134-36713ac28b84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "793e67bf-f59b-4248-8395-9b3f725dd97e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113657Z:793e67bf-f59b-4248-8395-9b3f725dd97e" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationStatus/0157f327-4f98-4fe7-9906-e24001bd717c?api-version=2020-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3Vwc3RvcmFnZWNvbmZpZy92YXVsdHN0b3JhZ2Vjb25maWcvb3BlcmF0aW9uU3RhdHVzLzAxNTdmMzI3LTRmOTgtNGZlNy05OTA2LWUyNDAwMWJkNzE3Yz9hcGktdmVyc2lvbj0yMDIwLTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef6444bc-c87c-4e56-8aa2-28b857990a71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "96bf472e-d3b2-4c78-940c-9233cf9c9ccc" + ], + "x-ms-client-request-id": [ + "ef6444bc-c87c-4e56-8aa2-28b857990a71", + "ef6444bc-c87c-4e56-8aa2-28b857990a71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-correlation-request-id": [ + "96bf472e-d3b2-4c78-940c-9233cf9c9ccc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113658Z:96bf472e-d3b2-4c78-940c-9233cf9c9ccc" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:57 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0157f327-4f98-4fe7-9906-e24001bd717c\",\r\n \"name\": \"0157f327-4f98-4fe7-9906-e24001bd717c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:57.5618705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationStatus/0157f327-4f98-4fe7-9906-e24001bd717c?api-version=2020-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3Vwc3RvcmFnZWNvbmZpZy92YXVsdHN0b3JhZ2Vjb25maWcvb3BlcmF0aW9uU3RhdHVzLzAxNTdmMzI3LTRmOTgtNGZlNy05OTA2LWUyNDAwMWJkNzE3Yz9hcGktdmVyc2lvbj0yMDIwLTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a7ae88a-5c55-430a-8e47-fcfded0ac397" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f56fb0ba-a405-45cb-8422-d2e9aeb23207" + ], + "x-ms-client-request-id": [ + "9a7ae88a-5c55-430a-8e47-fcfded0ac397", + "9a7ae88a-5c55-430a-8e47-fcfded0ac397" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-correlation-request-id": [ + "f56fb0ba-a405-45cb-8422-d2e9aeb23207" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113658Z:f56fb0ba-a405-45cb-8422-d2e9aeb23207" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0157f327-4f98-4fe7-9906-e24001bd717c\",\r\n \"name\": \"0157f327-4f98-4fe7-9906-e24001bd717c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:57.5618705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationStatus/0157f327-4f98-4fe7-9906-e24001bd717c?api-version=2020-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3Vwc3RvcmFnZWNvbmZpZy92YXVsdHN0b3JhZ2Vjb25maWcvb3BlcmF0aW9uU3RhdHVzLzAxNTdmMzI3LTRmOTgtNGZlNy05OTA2LWUyNDAwMWJkNzE3Yz9hcGktdmVyc2lvbj0yMDIwLTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0110944f-339c-4111-a5a2-827eada73582" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7afb4635-4b32-4302-b5ab-cb52f4c91349" + ], + "x-ms-client-request-id": [ + "0110944f-339c-4111-a5a2-827eada73582", + "0110944f-339c-4111-a5a2-827eada73582" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-correlation-request-id": [ + "7afb4635-4b32-4302-b5ab-cb52f4c91349" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113659Z:7afb4635-4b32-4302-b5ab-cb52f4c91349" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:58 GMT" + ], + "Content-Length": [ + "188" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0157f327-4f98-4fe7-9906-e24001bd717c\",\r\n \"name\": \"0157f327-4f98-4fe7-9906-e24001bd717c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-08-26T11:36:57.5618705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationStatus/0157f327-4f98-4fe7-9906-e24001bd717c?api-version=2020-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3Vwc3RvcmFnZWNvbmZpZy92YXVsdHN0b3JhZ2Vjb25maWcvb3BlcmF0aW9uU3RhdHVzLzAxNTdmMzI3LTRmOTgtNGZlNy05OTA2LWUyNDAwMWJkNzE3Yz9hcGktdmVyc2lvbj0yMDIwLTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "acb76bc4-2a60-4e23-8307-798333413ad5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a79fc2a7-91ad-4869-bd01-c8a0cfa4a9f9" + ], + "x-ms-client-request-id": [ + "acb76bc4-2a60-4e23-8307-798333413ad5", + "acb76bc4-2a60-4e23-8307-798333413ad5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-correlation-request-id": [ + "a79fc2a7-91ad-4869-bd01-c8a0cfa4a9f9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113659Z:a79fc2a7-91ad-4869-bd01-c8a0cfa4a9f9" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:59 GMT" + ], + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0157f327-4f98-4fe7-9906-e24001bd717c\",\r\n \"name\": \"0157f327-4f98-4fe7-9906-e24001bd717c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-26T11:36:57.5618705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/PSTestRG54548c5f8/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupstorageconfig/vaultstorageconfig/operationStatus/0157f327-4f98-4fe7-9906-e24001bd717c?api-version=2020-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEzNjRmMGYtMzA3Yi00MWM5LTlkNDctYjc0MTNlYzQ1NTM1L3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHNTQ1NDhjNWY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvUFNUZXN0UlNWNTQ1NDhjNWYvYmFja3Vwc3RvcmFnZWNvbmZpZy92YXVsdHN0b3JhZ2Vjb25maWcvb3BlcmF0aW9uU3RhdHVzLzAxNTdmMzI3LTRmOTgtNGZlNy05OTA2LWUyNDAwMWJkNzE3Yz9hcGktdmVyc2lvbj0yMDIwLTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1622986d-4707-4d5c-89ba-031c0e82aa54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1e62463c-5a1c-48bf-93ad-f8e2a4b167ba" + ], + "x-ms-client-request-id": [ + "1622986d-4707-4d5c-89ba-031c0e82aa54", + "1622986d-4707-4d5c-89ba-031c0e82aa54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-correlation-request-id": [ + "1e62463c-5a1c-48bf-93ad-f8e2a4b167ba" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200826T113659Z:1e62463c-5a1c-48bf-93ad-f8e2a4b167ba" + ], + "Date": [ + "Wed, 26 Aug 2020 11:36:59 GMT" + ], + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"0157f327-4f98-4fe7-9906-e24001bd717c\",\r\n \"name\": \"0157f327-4f98-4fe7-9906-e24001bd717c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-08-26T11:36:57.5618705Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "da364f0f-307b-41c9-9d47-b7413ec45535", + "NamingSuffix": "54548c5f-1914-44f7-adb5-6f51509a9522" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/CopyAzureRmRecoveryServicesVault.cs b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/CopyAzureRmRecoveryServicesVault.cs new file mode 100644 index 000000000000..d30b48c793a6 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Vault/CopyAzureRmRecoveryServicesVault.cs @@ -0,0 +1,193 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using Microsoft.Azure.Management.RecoveryServices.Backup.Models; +using Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.ServiceClientAdapterNS; +using Microsoft.Azure.Commands.RecoveryServices.Backup.Properties; +using Microsoft.Azure.Commands.RecoveryServices.Backup.Helpers; + +namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets +{ + /// + /// Used for Data Source Move operation. Currently we only support vault level data move from one region to another. + /// + [Cmdlet("Copy", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RecoveryServicesVault", SupportsShouldProcess = true), OutputType(typeof(String))] + public class CopyAzureRmRecoveryServicesVault : RecoveryServicesBackupCmdletBase + { + #region Parameters + /// + /// Source Vault for Data Move Operation + /// + [Parameter(Position = 1, Mandatory = true, HelpMessage = ParamHelpMsgs.DSMove.SourceVault, + ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public ARSVault SourceVault; + + /// + /// Target Vault for Data Move Operation + /// + [Parameter(Position = 2, Mandatory = true, HelpMessage = ParamHelpMsgs.DSMove.TargetVault, + ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public ARSVault TargetVault; + + /// + /// Retries data move only with unmoved containers in the source vault + /// + [Parameter(Mandatory = false, HelpMessage = ParamHelpMsgs.DSMove.RetryOnlyFailed)] + public SwitchParameter RetryOnlyFailed; + + /// + /// Prevents the confirmation dialog when specified. + /// + [Parameter(Mandatory = false, HelpMessage = ParamHelpMsgs.DSMove.ForceOption)] + public SwitchParameter Force { get; set; } + + #endregion Parameters + + public override void ExecuteCmdlet() + { + ExecutionBlock(() => + { + // Check if the Target vault is empty + /// Check the containers count in target vault + var protectionContainersCount = BackupUtils.GetProtectionContainersCount(TargetVault.Name, TargetVault.ResourceGroupName, ServiceClientAdapter); + + Logger.Instance.WriteDebug("Protection Containers within vault: " + TargetVault.Name + " and resource Group: " + + TargetVault.ResourceGroupName+ " are " + protectionContainersCount); + + if (protectionContainersCount > 0) + { + throw new ArgumentException(string.Format(Resources.TargetVaultNotEmptyException)); + } + + /// check the count for VM backupItems + int vmItemsCount = BackupUtils.GetProtectedItems(TargetVault.Name, TargetVault.ResourceGroupName, + BackupManagementType.AzureIaasVM, WorkloadType.VM, ServiceClientAdapter).Count; + + Logger.Instance.WriteDebug("Protected VMs within vault: " + TargetVault.Name + " and resource Group: " + + TargetVault.ResourceGroupName + " are " + vmItemsCount); + + if (vmItemsCount > 0) { + throw new ArgumentException(string.Format(Resources.TargetVaultNotEmptyException)); + } + + // Confirm the target vault storage type + BackupResourceConfigResource getStorageResponse = ServiceClientAdapter.GetVaultStorageType( + TargetVault.ResourceGroupName, TargetVault.Name); + + Logger.Instance.WriteDebug("Storage Type: " + getStorageResponse.Properties.StorageType); + + ConfirmAction( + Force.IsPresent, + string.Format(Resources.TargetVaultStorageRedundancy,TargetVault.Name, getStorageResponse.Properties.StorageType), + Resources.TargetVaultStorageRedundancy, + getStorageResponse.Properties.StorageType, () => + { + base.ExecuteCmdlet(); + + // Prepare Data Move + PrepareDataMoveRequest prepareMoveRequest = new PrepareDataMoveRequest(); + prepareMoveRequest.TargetResourceId = TargetVault.ID; + prepareMoveRequest.TargetRegion = TargetVault.Location; + + /// currently only allowing vault level data move + prepareMoveRequest.DataMoveLevel = "Vault"; + + if (RetryOnlyFailed.IsPresent) + { + prepareMoveRequest.IgnoreMoved = true; + } + else + { + prepareMoveRequest.IgnoreMoved = false; + } + + Logger.Instance.WriteDebug("Retry only with failed items : " + prepareMoveRequest.IgnoreMoved); + Logger.Instance.WriteDebug("Location of Target vault: " + TargetVault.Location); + + string correlationId = PrepareDataMove(SourceVault.Name, SourceVault.ResourceGroupName, prepareMoveRequest); + + // Trigger Data Move + TriggerDataMoveRequest triggerMoveRequest = new TriggerDataMoveRequest(); + triggerMoveRequest.SourceResourceId = SourceVault.ID; + triggerMoveRequest.SourceRegion = SourceVault.Location; + + /// currently only allowing vault level data move + triggerMoveRequest.DataMoveLevel = "Vault"; + triggerMoveRequest.CorrelationId = correlationId; + triggerMoveRequest.PauseGC = false; + + Logger.Instance.WriteDebug("Location of Source vault: " + SourceVault.Location); + TriggerDataMove(TargetVault.Name, TargetVault.ResourceGroupName, triggerMoveRequest); + + WriteObject(ParamHelpMsgs.DSMove.CmdletOutput); + } + ); + }, ShouldProcess(TargetVault.Name, VerbsCommon.Set)); + } + + /// + /// This method prepares the source vault for Data Move operation. + /// + /// + /// + /// + public string PrepareDataMove(string vaultName, string resourceGroupName, PrepareDataMoveRequest prepareMoveRequest) + { + // prepare move + var prepareMoveOperationResponse = ServiceClientAdapter.BmsAdapter.Client.BeginBMSPrepareDataMoveWithHttpMessagesAsync( + vaultName, resourceGroupName, prepareMoveRequest).Result; + + // track prepare-move operation to success + var operationStatus = TrackingHelpers.GetOperationStatusDataMove( + prepareMoveOperationResponse, + operationId => ServiceClientAdapter.GetDataMoveOperationStatus(operationId, vaultName, resourceGroupName)); + + Logger.Instance.WriteDebug("Prepare move operation: " + operationStatus.Body.Status); + + // get the correlation Id and return it for trigger data move + var operationResult = TrackingHelpers.GetCorrelationId( + prepareMoveOperationResponse, + operationId => ServiceClientAdapter.GetPrepareDataMoveOperationResult(operationId, vaultName, resourceGroupName)); + + Logger.Instance.WriteDebug("Prepare move - correlationId:" + operationResult.CorrelationId); + + return operationResult.CorrelationId; + } + + /// + /// This method triggers the Data Move operation on Target vault. + /// + /// + /// + /// + public void TriggerDataMove(string vaultName, string resourceGroupName, TriggerDataMoveRequest triggerMoveRequest) + { + //trigger move + var triggerMoveOperationResponse = ServiceClientAdapter.BmsAdapter.Client.BeginBMSTriggerDataMoveWithHttpMessagesAsync( + vaultName, resourceGroupName, triggerMoveRequest).Result; + + // track trigger-move operation to success + var operationStatus = TrackingHelpers.GetOperationStatusDataMove( + triggerMoveOperationResponse, + operationId => ServiceClientAdapter.GetDataMoveOperationStatus(operationId, vaultName, resourceGroupName)); + + Logger.Instance.WriteDebug("Trigger move operation: " + operationStatus.Body.Status); + + } + } +} diff --git a/src/RecoveryServices/RecoveryServices.Backup/Helpers/BackupUtils.cs b/src/RecoveryServices/RecoveryServices.Backup/Helpers/BackupUtils.cs new file mode 100644 index 000000000000..961cb9fe3499 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.Backup/Helpers/BackupUtils.cs @@ -0,0 +1,72 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.ServiceClientAdapterNS; +using Microsoft.Azure.Management.RecoveryServices.Backup.Models; +using Microsoft.Rest.Azure.OData; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets +{ + + public class BackupUtils + { + /// + /// Get Protected Items for particular workload type + /// + public static List GetProtectedItems( + string vaultName, + string resourceGroupName, + string BackupManagementType, + string DataSourceType, + ServiceClientAdapter serviceClientAdapter) + { + ODataQuery queryParams = new ODataQuery( + q => q.BackupManagementType + == BackupManagementType && + q.ItemType == DataSourceType); + + List protectedItems = new List(); + + var listResponse = serviceClientAdapter.ListProtectedItem( + queryParams, + skipToken: null, + vaultName: vaultName, + resourceGroupName: resourceGroupName); + protectedItems.AddRange(listResponse); + + return protectedItems; + } + + /// + /// Get protection containers count from BackupUsageSummary + /// + public static long? GetProtectionContainersCount(string vaultName, string resourceGroupName, ServiceClientAdapter serviceClientAdapter) { + + ODataQuery queryFilter = new ODataQuery( + q => q.Type == "BackupProtectionContainerCountSummary"); + + long? containersCount = 0; + IEnumerable backupUsageSummary = serviceClientAdapter.GetBackupUsageSummary( + vaultName, resourceGroupName, queryFilter); + foreach (BackupManagementUsage containerSummary in backupUsageSummary) + { + containersCount += containerSummary.CurrentValue; + } + + return containersCount; + } + } +} + diff --git a/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs b/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs index 83a0b57e9077..1695d380ecb9 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs +++ b/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs @@ -12,6 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System; using System.Configuration.Internal; using System.Runtime.CompilerServices; @@ -181,5 +182,14 @@ internal static class RecoveryPointConfig public const string FilePath = "Specifies the filepath which is used for restore operation."; public const string FromFull = "Specifies the Full RecoveryPoint to which Log backups will be applied."; } + + internal static class DSMove + { + public const string SourceVault = "The source vault object to trigger data move."; + public const string TargetVault = "The target vault object where the data has to be moved."; + public const string ForceOption = "Forces the data move operation (prevents confirmation dialog). This parameter is optional."; + public const string CmdletOutput = "Please monitor the operation using Get-AzRecoveryServicesBackupJob cmdlet"; + public const string RetryOnlyFailed = "Switch parameter to try data move only for containers in the source vault which are not yet moved."; + } } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup/RecoveryServices.Backup.csproj b/src/RecoveryServices/RecoveryServices.Backup/RecoveryServices.Backup.csproj index 7abcaef3ff17..bbb77f0f8a3a 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/RecoveryServices.Backup.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup/RecoveryServices.Backup.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 index 05a3d544e8fd..601157888054 100644 --- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 +++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 @@ -190,7 +190,8 @@ CmdletsToExport = 'Get-AzRecoveryServicesBackupProperty', 'Get-AzRecoveryServicesBackupStatus', 'Undo-AzRecoveryServicesBackupItemDeletion', 'Set-AzRecoveryServicesVaultProperty', - 'Get-AzRecoveryServicesVaultProperty' + 'Get-AzRecoveryServicesVaultProperty', + 'Copy-AzRecoveryServicesVault' # Variables to export from this module # VariablesToExport = @() diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index 2ed101b4c83d..1f94be74cacf 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release +* Azure Backup added a new cmdlet Copy-AzRecoveryServicesVault for DS move feature. +* Get-AzRecoveryServicesBackupJob cmdlet now supports operation type 'BackupDataMove'. ## Version 2.11.1 * Improved the Azure Backup container/item discovery experience. diff --git a/src/RecoveryServices/RecoveryServices/RecoveryServices.csproj b/src/RecoveryServices/RecoveryServices/RecoveryServices.csproj index 3c2ea8295e54..a2a9ba988714 100644 --- a/src/RecoveryServices/RecoveryServices/RecoveryServices.csproj +++ b/src/RecoveryServices/RecoveryServices/RecoveryServices.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices/help/Az.RecoveryServices.md b/src/RecoveryServices/RecoveryServices/help/Az.RecoveryServices.md index 17b2ee7d9e46..25c343568094 100644 --- a/src/RecoveryServices/RecoveryServices/help/Az.RecoveryServices.md +++ b/src/RecoveryServices/RecoveryServices/help/Az.RecoveryServices.md @@ -17,6 +17,9 @@ Add the disk for protection for already protected azure virtual machine. ### [Backup-AzRecoveryServicesBackupItem](Backup-AzRecoveryServicesBackupItem.md) Starts a backup for a Backup item. +### [Copy-AzRecoveryServicesVault](Copy-AzRecoveryServicesVault.md) +Copies data from a vault in one region to a vault in another region. + ### [Disable-AzRecoveryServicesBackupAutoProtection](Disable-AzRecoveryServicesBackupAutoProtection.md) Disables auto backup for a protectable item. @@ -30,7 +33,7 @@ Dismounts all the files of the recovery point. Edits a Site Recovery plan. ### [Enable-AzRecoveryServicesBackupAutoProtection](Enable-AzRecoveryServicesBackupAutoProtection.md) -This commands allows users to automatically protect all existing unprotected DBs and any DB which will be added later with the given policy. Azure backup service will then regularly scan auto-protected containers for any new DBs and automatically protect them. +The **Enable-AzRecoveryServicesBackupAutoProtection** cmdlet sets up automatic protection of current and any future SQL DBs within the given instance with the supplied policy. ### [Enable-AzRecoveryServicesBackupProtection](Enable-AzRecoveryServicesBackupProtection.md) Enables backup for an item with a specified Backup protection policy. @@ -137,6 +140,9 @@ This command constructs the recovery configuration of a backed up item such as S ### [Get-AzRecoveryServicesVault](Get-AzRecoveryServicesVault.md) Gets a list of Recovery Services vaults. +### [Get-AzRecoveryServicesVaultProperty](Get-AzRecoveryServicesVaultProperty.md) +Returns the properties of a Recovery Services Vault. + ### [Get-AzRecoveryServicesVaultSettingsFile](Get-AzRecoveryServicesVaultSettingsFile.md) Gets the Azure Site Recovery vault settings file. @@ -189,7 +195,7 @@ Creates a Backup protection policy. Creates a new Recovery Services vault. ### [Register-AzRecoveryServicesBackupContainer](Register-AzRecoveryServicesBackupContainer.md) -This command allows Azure Backup to convert the �Resource� to a �Backup Container� which is then registered to the given Recovery services vault. The Azure Backup service can then discover workloads of the given workload type within this container to be protected later. +The **Register-AzRecoveryServicesBackupContainer** cmdlet registers an Azure VM for AzureWorkloads with specific workloadType. ### [Remove-AzRecoveryServicesAsrFabric](Remove-AzRecoveryServicesAsrFabric.md) Deletes the specified Azure Site Recovery Fabric from the Recovery Services vault. @@ -254,6 +260,9 @@ Modifies a Backup protection policy. ### [Set-AzRecoveryServicesVaultContext](Set-AzRecoveryServicesVaultContext.md) Sets vault context. +### [Set-AzRecoveryServicesVaultProperty](Set-AzRecoveryServicesVaultProperty.md) +Updates properties of a Vault. + ### [Start-AzRecoveryServicesAsrApplyRecoveryPoint](Start-AzRecoveryServicesAsrApplyRecoveryPoint.md) Changes a recovery point for a failed over protected item before committing the failover operation. @@ -284,6 +293,9 @@ Stops an Azure Site Recovery job. ### [Stop-AzRecoveryServicesBackupJob](Stop-AzRecoveryServicesBackupJob.md) Cancels a running job. +### [Undo-AzRecoveryServicesBackupItemDeletion](Undo-AzRecoveryServicesBackupItemDeletion.md) +If a backup item is deleted and present in a soft-deleted state, this command brings the item back to a state where the data is retained forever + ### [Unregister-AzRecoveryServicesBackupContainer](Unregister-AzRecoveryServicesBackupContainer.md) Unregisters a Windows Server or other container from the vault. diff --git a/src/RecoveryServices/RecoveryServices/help/Copy-AzRecoveryServicesVault.md b/src/RecoveryServices/RecoveryServices/help/Copy-AzRecoveryServicesVault.md new file mode 100644 index 000000000000..d2cd1d76e900 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices/help/Copy-AzRecoveryServicesVault.md @@ -0,0 +1,135 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll-Help.xml +Module Name: Az.RecoveryServices +online version: https://docs.microsoft.com/en-us/powershell/module/az.recoveryservices/copy-azrecoveryservicesvault +schema: 2.0.0 +--- + +# Copy-AzRecoveryServicesVault + +## SYNOPSIS +Copies data from a vault in one region to a vault in another region. + +## SYNTAX + +``` +Copy-AzRecoveryServicesVault [-Force] [-DefaultProfile ] [-SourceVault] + [-TargetVault] [-RetryOnlyFailed] [] +``` + +## DESCRIPTION +The **Copy-AzRecoveryServicesVault** cmdlet copies data from a vault in one region to a vault in another region. Currently we only support vault level data move. + +## EXAMPLES + +### Example 1: Copy data from vault1 to vault2 +```powershell +PS C:\> $sourceVault = Get-AzRecoveryServicesVault -ResourceGroupName "rgName1" -Name "vault1" +PS C:\> $targetVault = Get-AzRecoveryServicesVault -ResourceGroupName "rgName2" -Name "vault2" +PS C:\> Copy-AzRecoveryServicesVault -SourceVault $sourceVault -TargetVault $targetVault +```git + +The first two cmdlets fetch Recovery Services Vault - vault1 and vault2 respectively. +The second command triggers a complete data move from vault1 to vault2. + +### Example 2: Copy data from vault1 to vault2 with only failed items +```powershell +PS C:\> $sourceVault = Get-AzRecoveryServicesVault -ResourceGroupName "rgName1" -Name "vault1" +PS C:\> $targetVault = Get-AzRecoveryServicesVault -ResourceGroupName "rgName2" -Name "vault2" +PS C:\> Copy-AzRecoveryServicesVault -SourceVault $sourceVault -TargetVault $targetVault -RetryOnlyFailed +```git + +The first two cmdlets fetch Recovery Services Vault - vault1 and vault2 respectively. +The second command triggers a partial data move from vault1 to vault2 with only those items which failed in previous move operations. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Forces the data move operation (prevents confirmation dialog) without asking confirmation for target vault storage redundancy type. This parameter is optional. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RetryOnlyFailed +Switch parameter to try data move only for containers in the source vault which are not yet moved. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SourceVault +The source vault object to be moved. + +```yaml +Type: ARSVault +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -TargetVault +The target vault object where the data has to be moved. + +```yaml +Type: ARSVault +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.RecoveryServices.ARSVault + +## OUTPUTS + +### System.String + +## NOTES + +## RELATED LINKS diff --git a/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesBackupJob.md b/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesBackupJob.md index e20a00cf0aa9..cded53e040ad 100644 --- a/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesBackupJob.md +++ b/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesBackupJob.md @@ -182,6 +182,7 @@ The acceptable values for this parameter are: - DeleteBackupData - DisableBackup - Restore +- BackupDataMove ```yaml Type: System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.JobOperation]